MCP ExplorerExplorer

Indian Medicine Mcp Server

@nowitsidbon 10 months ago
1 MIT
FreeCommunity
AI Systems
A comprehensive API server for medicine information lookup, alternative suggestions, and composition analysis. This server provides multiple endpoints for searching, filtering, and analyzing medicine data with advanced features like fuzzy matching and price comparison.

Overview

What is Indian Medicine Mcp Server

INDIAN_MEDICINE_MCP_SERVER is a comprehensive API server designed for medicine information lookup, alternative suggestions, and composition analysis. It provides multiple endpoints for searching, filtering, and analyzing medicine data with advanced features like fuzzy matching and price comparison.

Use cases

Use cases for INDIAN_MEDICINE_MCP_SERVER include searching for specific medicines, comparing prices of similar drugs, analyzing the composition of medications, and providing alternative medicine suggestions based on user queries.

How to use

To use INDIAN_MEDICINE_MCP_SERVER, you can access its various API endpoints for searching and filtering medicine data. The server supports advanced search capabilities, including exact and fuzzy name matching, as well as composition-based searches. Users can also utilize analysis tools for detailed insights.

Key features

Key features of INDIAN_MEDICINE_MCP_SERVER include advanced search capabilities, analysis tools for composition and statistical insights, medical decision support with alternative suggestions, and performance optimizations for fast lookups.

Where to use

INDIAN_MEDICINE_MCP_SERVER can be used in healthcare applications, pharmacy management systems, medical research, and any platform requiring detailed medicine information and analysis.

Content

INDIAN MEDICINES (MCP SERVER)

Python
FastMCP
JSON

A comprehensive API server for medicine information lookup, alternative suggestions, and composition analysis. This server provides multiple endpoints for searching, filtering, and analyzing medicine data with advanced features like fuzzy matching and price comparison.

📖 Table of Contents

📋 Introduction

MedicineDB API Server is a high-performance tool designed to provide comprehensive access to medicine information. It offers a wide range of functionalities from basic medicine lookups to advanced composition analysis and alternative medicine suggestions. This server is built to handle large datasets efficiently while providing accurate and relevant results.

✨ Features

  • Advanced Search Capabilities

    • Exact and fuzzy name matching for medicines
    • Composition/ingredient-based search
    • Multi-criteria filtering with pagination
    • Manufacturer and price range filtering
  • Analysis Tools

    • Composition string parser and analyzer
    • Statistical analysis of the database
    • Ingredient categorization
  • Medical Decision Support

    • Alternative medicine suggestions
    • Price comparison between similar medicines
    • Prescription requirement filtering
  • Performance Optimized

    • Multiple indexing for fast lookups
    • Efficient similarity calculations
    • Precomputed extracted ingredients

🛠️ Tech Stack

Technology Purpose
Python Core programming language
FastMCP Server framework
JSON Data storage format

Libraries:

  • difflib: For fuzzy string matching and medicine name similarity
  • re: For parsing composition strings and ingredient extraction
  • collections: For optimized data structures (defaultdict, Counter)
  • math: For price bucketing and pagination calculations
  • typing: For type hints
  • dataclasses: For structured data

🚀 Installation

  1. Clone the repository:
git clone https://github.com/yourusername/medicines-db.git
cd medicines-db
  1. Install dependencies:
pip install -r requirements.txt
  1. Prepare your medicine database:
# Ensure your JSON data file is at the correct path
# Default path: /Users/siddharthbajpai/Downloads/MCP_SERVER/medicines.json
# Update DATA_PATH in the code if needed
  1. Run the server:
python medicines_server.py

📘 Usage

The server exposes multiple API endpoints through MCP (Model Context Protocol) architecture. You can interact with the server using any MCP client.

Basic example:

from mcp.client import MCPClient

# Connect to the server
client = MCPClient("medicines-db")

# Search for a medicine
result = client.search_medicines("paracetamol", max_results=5)
print(result)

# Get alternatives to a specific medicine
alternatives = client.suggest_alternatives("Dolo 650")
print(alternatives)

📚 API Reference

The server provides 15 API endpoints through the MCP framework:

Search Endpoints

1. get_medicine_by_name

GET /get_medicine_by_name

Retrieve a medicine record by its exact Name, with optional cheaper alternatives.

Parameters:

  • name (string, required): The exact Name field of the medicine
  • include_alternatives (boolean, optional, default=true): Whether to include cheaper alternatives in results

Response:

2. search_medicines

GET /search_medicines

Full-text search across all medicine fields.

Parameters:

  • query (string, required): Substring to search (case-insensitive)
  • max_results (integer, optional, default=10): Maximum number of matching records to return

Response:

3. fuzzy_search_by_name

GET /fuzzy_search_by_name

Search for medicines with names similar to the provided partial name using fuzzy matching.

Parameters:

  • partial_name (string, required): A partial or misspelled medicine name to search for
  • similarity_threshold (number, optional, default=0.6): Minimum similarity score (0.0-1.0) to include in results
  • max_results (integer, optional, default=10): Maximum number of matching records to return

Response:

4. search_by_composition

GET /search_by_composition

Search for medicines containing a specific active ingredient.

Parameters:

  • ingredient (string, required): Name of an active ingredient to search for
  • max_results (integer, optional, default=10): Maximum number of matching records to return

Response:

Filter Endpoints

5. filter_by_price_range

GET /filter_by_price_range

Filter medicines by price range.

Parameters:

  • min_price (number, optional, default=0): Minimum price in INR
  • max_price (number, optional, default=null): Maximum price in INR
  • max_results (integer, optional, default=20): Maximum number of matching records to return

Response:

6. filter_by_manufacturer

GET /filter_by_manufacturer

Filter medicines by manufacturer.

Parameters:

  • manufacturer (string, required): Full or partial manufacturer name
  • max_results (integer, optional, default=20): Maximum number of matching records to return

Response:

7. filter_by_prescription_requirement

GET /filter_by_prescription_requirement

Filter medicines by prescription requirement.

Parameters:

  • prescription_required (boolean, required): True for prescription medicines, False for over-the-counter
  • max_results (integer, optional, default=20): Maximum number of matching records to return

Response:

8. paginated_search

GET /paginated_search

Advanced search with pagination and multiple filters.

Parameters:

  • query (string, optional, default=“”): General search term (searches across all fields)
  • page (integer, optional, default=1): Page number (starting from 1)
  • page_size (integer, optional, default=10): Number of results per page
  • manufacturer (string, optional, default=“”): Filter by manufacturer (full or partial)
  • min_price (number, optional, default=0): Minimum price filter
  • max_price (number, optional, default=null): Maximum price filter
  • prescription_required (boolean or null, optional, default=null): Filter by prescription requirement (null for any)
  • ingredient (string, optional, default=“”): Filter by active ingredient

Response:

Analysis Endpoints

9. find_similar_medicines

GET /find_similar_medicines

Find medicines with similar composition to the specified medicine.

Parameters:

  • medicine_name (string, required): Name of the reference medicine
  • max_results (integer, optional, default=5): Maximum number of similar medicines to return

Response:

10. analyze_composition

GET /analyze_composition

Analyze a medicine composition string to extract and structure the ingredients.

Parameters:

  • composition (string, required): A composition string (e.g. “Ambroxol (30mg/5ml) + Levosalbutamol (1mg/5ml)”)

Response:

11. count_medicines_by_composition

GET /count_medicines_by_composition

Count and list all medicines with a specific composition or containing specific ingredients.

Parameters:

  • composition (string, required): The composition or ingredient to search for
  • exact_match (boolean, optional, default=false): If True, only find medicines with the exact composition. If False, find medicines containing this ingredient.

Response:

12. categorize_medicines

GET /categorize_medicines

Categorize medicines by active ingredients and return the most common categories.

Parameters:

  • max_categories (integer, optional, default=10): Maximum number of categories to return

Response:

Utility Endpoints

13. get_medicine_statistics

GET /get_medicine_statistics

Get statistical overview of the medicines database.

Parameters: None

Response:

14. get_all_manufacturers

GET /get_all_manufacturers

Get a list of all manufacturers in the database.

Parameters: None

Response:

15. suggest_alternatives

GET /suggest_alternatives

Suggest alternative medicines based on composition similarity and price.

Parameters:

  • medicine_name (string, required): Name of the reference medicine
  • max_suggestions (integer, optional, default=5): Maximum number of alternatives to suggest

Response:

📊 Data Structure

The system expects a JSON array of medicine objects with the following structure:

The system enhances this data with additional computed fields:

  • Price_INR: Formatted price with currency symbol
  • Price_Category: Classification into Low/Medium/High/Premium
  • Active_Ingredients: Extracted list of ingredients
  • Ingredient_Count: Number of active ingredients
  • Is_Combination: Whether the medicine contains multiple ingredients
  • Requires_Prescription: Boolean for prescription requirement
  • Prescription_Type: Human-readable prescription status

⚡ Performance Optimizations

The server implements several optimizations:

  1. Multiple indices for fast lookups:

    • Name index
    • Manufacturer index
    • Composition index
    • Price index
    • Prescription index
  2. Ingredient extraction is done once at startup to avoid repeated parsing

  3. Similarity calculations use efficient algorithms:

    • SequenceMatcher for string similarity
    • Jaccard index for ingredient similarity
  4. Price bucketing for faster range queries

🤝 Contributing

Contributions are welcome! Here’s how you can help:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Please make sure to update tests as appropriate.

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.


Developed by Siddharth Bajpai

For questions or support, please contact

For medicines data, contact me on LinkedIn

Tools

No tools

Comments

Recommend MCP Servers

View All MCP Servers