
INDIAN MEDICINES (MCP SERVER)
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.
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.
How to use INDIAN MEDICINE (MCP SERVER)?
To use the server, clone the repository, install the dependencies, prepare your medicine database, and run the server. You can interact with the server using any MCP client to access its various API endpoints.
Key features of INDIAN MEDICINE (MCP SERVER)?
- Advanced search capabilities with exact and fuzzy name matching.
- Composition-based search and multi-criteria filtering.
- Analysis tools for composition parsing and statistical analysis.
- Medical decision support with alternative suggestions and price comparisons.
- Performance optimizations for fast lookups and efficient calculations.
Use cases of INDIAN MEDICINE (MCP SERVER)?
- Searching for specific medicines by name or composition.
- Finding alternative medicines based on composition similarity.
- Analyzing the composition of medicines for ingredient extraction.
- Filtering medicines by price range or manufacturer.
FAQ from INDIAN MEDICINE (MCP SERVER)?
- Can I use this API for all types of medicines?
Yes! The API covers a wide range of medicines and provides detailed information.
- Is there a limit on the number of API calls?
The API does not impose strict limits, but it is recommended to use it responsibly to avoid overloading the server.
- How can I contribute to the project?
Contributions are welcome! You can fork the repository, create a feature branch, and submit a pull request.
INDIAN MEDICINES (MCP SERVER)
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
- Features
- Tech Stack
- Installation
- Usage
- API Reference
- Data Structure
- Performance Optimizations
- Contributing
- License
📋 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 |
---|---|
Core programming language | |
Server framework | |
Data storage format |
Libraries:
difflib
: For fuzzy string matching and medicine name similarityre
: For parsing composition strings and ingredient extractioncollections
: For optimized data structures (defaultdict, Counter)math
: For price bucketing and pagination calculationstyping
: For type hintsdataclasses
: For structured data
🚀 Installation
- Clone the repository:
git clone https://github.com/yourusername/medicines-db.git
cd medicines-db
- Install dependencies:
pip install -r requirements.txt
- 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
- 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
get_medicine_by_name
1. 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 medicineinclude_alternatives
(boolean, optional, default=true): Whether to include cheaper alternatives in results
Response:
{
"medicine": {
"Name": "Dolo 650",
"Manufacturer": "Micro Labs Ltd",
"Composition": "Paracetamol (650mg)",
"MRP": "30.29",
"Prescription": "No",
"Price_INR": "₹30.29",
"Price_Category": "Low",
"Active_Ingredients": ["Paracetamol"],
"Ingredient_Count": 1,
"Is_Combination": false,
"Requires_Prescription": false,
"Prescription_Type": "Over-the-Counter"
},
"cheaper_alternatives": [
{
"medicine": {...},
"price_savings": "₹10.30",
"savings_percentage": "34.0%",
"similarity_score": "1.00"
}
]
}
search_medicines
2. 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:
[
{
"Name": "Dolo 650",
"Manufacturer": "Micro Labs Ltd",
"Composition": "Paracetamol (650mg)",
"MRP": "30.29",
"Price_INR": "₹30.29",
...
},
...
]
fuzzy_search_by_name
3. 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 forsimilarity_threshold
(number, optional, default=0.6): Minimum similarity score (0.0-1.0) to include in resultsmax_results
(integer, optional, default=10): Maximum number of matching records to return
Response:
[
{
"similarity_score": "0.92",
"medicine": {
"Name": "Dolo 650",
...
}
},
...
]
search_by_composition
4. GET /search_by_composition
Search for medicines containing a specific active ingredient.
Parameters:
ingredient
(string, required): Name of an active ingredient to search formax_results
(integer, optional, default=10): Maximum number of matching records to return
Response:
[
{
"Name": "Dolo 650",
"Composition": "Paracetamol (650mg)",
...
},
...
]
Filter Endpoints
filter_by_price_range
5. GET /filter_by_price_range
Filter medicines by price range.
Parameters:
min_price
(number, optional, default=0): Minimum price in INRmax_price
(number, optional, default=null): Maximum price in INRmax_results
(integer, optional, default=20): Maximum number of matching records to return
Response:
[
{
"Name": "Crocin Pain Relief",
"MRP": "49.43",
"Price_INR": "₹49.43",
...
},
...
]
filter_by_manufacturer
6. GET /filter_by_manufacturer
Filter medicines by manufacturer.
Parameters:
manufacturer
(string, required): Full or partial manufacturer namemax_results
(integer, optional, default=20): Maximum number of matching records to return
Response:
[
{
"Name": "Dolo 650",
"Manufacturer": "Micro Labs Ltd",
...
},
...
]
filter_by_prescription_requirement
7. GET /filter_by_prescription_requirement
Filter medicines by prescription requirement.
Parameters:
prescription_required
(boolean, required): True for prescription medicines, False for over-the-countermax_results
(integer, optional, default=20): Maximum number of matching records to return
Response:
[
{
"Name": "Dolo 650",
"Prescription": "No",
"Requires_Prescription": false,
"Prescription_Type": "Over-the-Counter",
...
},
...
]
paginated_search
8. 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 pagemanufacturer
(string, optional, default=""): Filter by manufacturer (full or partial)min_price
(number, optional, default=0): Minimum price filtermax_price
(number, optional, default=null): Maximum price filterprescription_required
(boolean or null, optional, default=null): Filter by prescription requirement (null for any)ingredient
(string, optional, default=""): Filter by active ingredient
Response:
{
"meta": {
"total_results": 150,
"page": 1,
"page_size": 10,
"total_pages": 15
},
"results": [
{
"Name": "Dolo 650",
...
},
...
]
}
Analysis Endpoints
find_similar_medicines
9. GET /find_similar_medicines
Find medicines with similar composition to the specified medicine.
Parameters:
medicine_name
(string, required): Name of the reference medicinemax_results
(integer, optional, default=5): Maximum number of similar medicines to return
Response:
{
"reference_medicine": {
"Name": "Dolo 650",
...
},
"similar_medicines": [
{
"similarity_score": "1.00",
"medicine": {
"Name": "Crocin Pain Relief",
...
}
},
...
]
}
analyze_composition
10. 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:
{
"raw_composition": "Ambroxol (30mg/5ml) + Levosalbutamol (1mg/5ml)",
"ingredients": [
{
"raw_text": "Ambroxol (30mg/5ml)",
"name": "Ambroxol",
"dosage": "30mg/5ml",
"dosage_value": "30",
"dosage_unit": "mg"
},
{
"raw_text": "Levosalbutamol (1mg/5ml)",
"name": "Levosalbutamol",
"dosage": "1mg/5ml",
"dosage_value": "1",
"dosage_unit": "mg"
}
],
"medicines_with_this_composition": [
{
"Name": "Ascoril LS Syrup",
...
},
...
]
}
count_medicines_by_composition
11. 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 forexact_match
(boolean, optional, default=false): If True, only find medicines with the exact composition. If False, find medicines containing this ingredient.
Response:
{
"query": "Paracetamol",
"exact_match": false,
"total_medicines_found": 500,
"total_manufacturers": 25,
"price_statistics": {
"min_price": "₹10.50",
"max_price": "₹150.75",
"avg_price": "₹45.30",
"total_medicines_with_price": 490
},
"medicines": [...],
"by_manufacturer": {
"Cipla": {
"count": 50,
"medicines": [...]
},
...
}
}
categorize_medicines
12. 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:
[
{
"category": "Paracetamol",
"medicine_count": 500,
"example_medicines": [...]
},
{
"category": "Amoxicillin",
"medicine_count": 300,
"example_medicines": [...]
},
...
]
Utility Endpoints
get_medicine_statistics
13. GET /get_medicine_statistics
Get statistical overview of the medicines database.
Parameters: None
Response:
{
"total_medicines": 15000,
"prescription_count": 7500,
"otc_count": 7000,
"unknown_prescription_status": 500,
"manufacturer_counts": {
"Sun Pharma": 1200,
"Cipla": 900,
...
},
"price_distribution": {
"min_price": "₹1.50",
"max_price": "₹2500.00",
"avg_price": "₹125.45",
"price_ranges": {
"₹0 - ₹99.99": 5000,
"₹100 - ₹199.99": 4000,
...
}
},
"common_ingredients": {
"Paracetamol": 500,
"Amoxicillin": 300,
...
}
}
get_all_manufacturers
14. GET /get_all_manufacturers
Get a list of all manufacturers in the database.
Parameters: None
Response:
[
{
"name": "Sun Pharma",
"medicine_count": 1200
},
{
"name": "Cipla",
"medicine_count": 900
},
...
]
suggest_alternatives
15. GET /suggest_alternatives
Suggest alternative medicines based on composition similarity and price.
Parameters:
medicine_name
(string, required): Name of the reference medicinemax_suggestions
(integer, optional, default=5): Maximum number of alternatives to suggest
Response:
{
"reference_medicine": {
"Name": "Dolo 650",
"MRP": "30.29",
...
},
"alternatives": [
{
"medicine": {
"Name": "Calpol 650",
"MRP": "26.50",
...
},
"ingredient_similarity": 1.0,
"price_difference_percentage": -12.5,
"price_comparison": "cheaper",
"absolute_price_difference": 3.79
},
...
]
}
📊 Data Structure
The system expects a JSON array of medicine objects with the following structure:
[
{
"Name": "Medicine Name",
"Manufacturer": "Company Name",
"Composition": "Ingredient1 (10mg) + Ingredient2 (20mg)",
"MRP": "123.45",
"Prescription": "Yes"
},
...
]
The system enhances this data with additional computed fields:
Price_INR
: Formatted price with currency symbolPrice_Category
: Classification into Low/Medium/High/PremiumActive_Ingredients
: Extracted list of ingredientsIngredient_Count
: Number of active ingredientsIs_Combination
: Whether the medicine contains multiple ingredientsRequires_Prescription
: Boolean for prescription requirementPrescription_Type
: Human-readable prescription status
⚡ Performance Optimizations
The server implements several optimizations:
-
Multiple indices for fast lookups:
- Name index
- Manufacturer index
- Composition index
- Price index
- Prescription index
-
Ingredient extraction is done once at startup to avoid repeated parsing
-
Similarity calculations use efficient algorithms:
- SequenceMatcher for string similarity
- Jaccard index for ingredient similarity
-
Price bucketing for faster range queries
🤝 Contributing
Contributions are welcome! Here's how you can help:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - 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