Unofficial ChEMBL MCP Server
About
Access the ChEMBL chemical database for drug discovery, chemical informatics, and bioactivity research using specialized tools via its REST API.
Details
- Author
- augmented-nature
- GitHub stars
- 88
- Downloads
- 404
- Categories
- Database, Other, API
- Tags
- #bioinformatics, #research
Jump to
- 22 specialized tools for chemical and drug discovery searches
- Compound search, similarity, and substructure retrieval
- Target analysis and UniProt integration
- Bioactivity, assay, and dose-response data access
- Drug development status and clinical trial information
- ADMET analysis, molecular descriptors, and drug-likeness assessment
- Batch processing and external database cross-references
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Unofficial ChEMBL MCP ServerCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install Node.js v16+, clone the repository, run npm install and npm run build, then start with npm start. Add the server to your MCP client configuration (e.g., Claude Desktop) using the path to the compiled build/index.js. Alternatively, run the Docker image with docker run -i chembl-mcp-server.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"unofficial chembl mcp server": {
"Augmented-Nature-ChEMBL-MCP-Server": {
"command": "docker",
"args": [
"build",
"-t",
"chembl-mcp-server",
"."
]
}
}
}
}
McpServers
{
"Augmented-Nature-ChEMBL-MCP-Server": {
"command": "docker",
"args": [
"build",
"-t",
"chembl-mcp-server",
"."
]
}
}
Access the ChEMBL chemical database for drug discovery, chemical informatics, and bioactivity research using specialized tools via its REST API.
A comprehensive Model Context Protocol (MCP) server providing advanced access to the ChEMBL chemical database. This server offers 22 specialized tools enabling AI assistants and MCP clients to perform sophisticated drug discovery research, chemical informatics analysis, and bioactivity investigations directly through ChEMBL's REST API.
Core Chemical Search & Retrieval (5 tools)
- Compound Search: Search the ChEMBL database by compound name, synonym, or identifier
- Detailed Compound Info: Retrieve comprehensive compound information including structure, properties, and annotations
- InChI-based Search: Find compounds by InChI key or InChI string
- Structure Retrieval: Get chemical structure information in various formats (SMILES, InChI, MOL, SDF)
- Similarity Search: Find chemically similar compounds using Tanimoto similarity
Target Analysis & Drug Discovery (5 tools)
- Target Search: Search for biological targets by name or type
- Detailed Target Info: Retrieve comprehensive target information and annotations
- Target Compounds: Get compounds tested against specific targets
- UniProt Integration: Find ChEMBL targets by UniProt accession numbers
- Target Pathways: Associated biological pathways and mechanisms
- Activity Search: Search bioactivity measurements and assay results
- Detailed Assay Info: Get comprehensive assay protocols and conditions
- Activity Type Search: Find bioactivity data by specific activity type and value range
- Dose-Response Analysis: Get dose-response data and activity profiles
- Activity Comparison: Compare bioactivity data across multiple compounds or targets
Drug Development & Clinical Data (4 tools)
- Drug Search: Search for approved drugs and clinical candidates
- Drug Development Status: Get drug development status and clinical trial information
- Therapeutic Indications: Search for therapeutic indications and disease areas
- Mechanism of Action: Get mechanism of action and target interaction data
- ADMET Analysis: Analyze ADMET properties (Absorption, Distribution, Metabolism, Excretion, Toxicity)
- Molecular Descriptors: Calculate molecular descriptors and physicochemical properties
- Solubility Prediction: Predict aqueous solubility and permeability properties
- Drug-Likeness Assessment: Assess drug-likeness using Lipinski Rule of Five and other metrics
Advanced Search & Cross-References (4 tools)
- Substructure Search: Find compounds containing specific substructures
- Batch Processing: Process multiple ChEMBL IDs efficiently
- External References: Get links to external databases (PubChem, DrugBank, PDB, etc.)
- Advanced Search: Complex queries with multiple chemical and biological filters
- Direct access to ChEMBL data via URI templates for seamless integration
git clone <repository-url> cd chembl-server
For MCP client integration, you can use the container directly:
{ "mcpServers": { "chembl": { "command": "docker", "args": ["run", "-i", "chembl-mcp-server"], "env": {} } } }
The server is designed to run as an MCP server that communicates via stdio:
Add the server to your MCP client configuration (e.g., Claude Desktop):
{ "mcpServers": { "chembl": { "command": "node", "args": ["/path/to/chembl-server/build/index.js"], "env": {} } } }
Search the ChEMBL database for compounds by name, synonym, or identifier.
- query(required): Search query (compound name, synonym, or identifier)
- limit(optional): Number of results to return (1-1000, default: 25)
- offset(optional): Number of results to skip (default: 0)
{ "query": "aspirin", "limit": 10 }
Get detailed information for a specific compound by ChEMBL ID.
- chembl_id(required): ChEMBL compound ID (e.g., CHEMBL25)
{ "chembl_id": "CHEMBL25" }
Search for biological targets by name or type.
- query(required): Target name or search query
- target_type(optional): Target type filter (e.g., SINGLE PROTEIN, PROTEIN COMPLEX)
- organism(optional): Organism filter
- limit(optional): Number of results to return (1-1000, default: 25)
{ "query": "dopamine receptor", "organism": "Homo sapiens", "limit": 5 }
Search bioactivity measurements and assay results.
- target_chembl_id(optional): ChEMBL target ID filter
- assay_chembl_id(optional): ChEMBL assay ID filter
- molecule_chembl_id(optional): ChEMBL compound ID filter
- activity_type(optional): Activity type (e.g., IC50, Ki, EC50)
- limit(optional): Number of results to return (1-1000, default: 25)
{ "target_chembl_id": "CHEMBL2095173", "activity_type": "IC50", "limit": 50 }
Process multiple ChEMBL IDs efficiently.
- chembl_ids(required): Array of ChEMBL compound IDs (1-50)
{ "chembl_ids": ["CHEMBL25", "CHEMBL59", "CHEMBL1642"] }
The server provides direct access to ChEMBL data through URI templates:
- URI:chembl://compound/{chembl_id}
- Description: Complete compound information for a ChEMBL ID
- Example:chembl://compound/CHEMBL25
- URI:chembl://target/{chembl_id}
- Description: Complete target information for a ChEMBL target ID
- Example:chembl://target/CHEMBL2095173
- URI:chembl://assay/{chembl_id}
- Description: Complete assay information for a ChEMBL assay ID
- Example:chembl://assay/CHEMBL1217643
- URI:chembl://activity/{activity_id}
- Description: Bioactivity measurement data for an activity ID
- Example:chembl://activity/12345678
- URI:chembl://search/{query}
- Description: Search results for compounds matching the query
- Example:chembl://search/aspirin
// Tool call { "tool": "search_compounds", "arguments": { "query": "aspirin", "limit": 5 } }
Retrieve comprehensive information about aspirin:
// Tool call { "tool": "get_compound_info", "arguments": { "chembl_id": "CHEMBL25" } }
Find compounds tested against dopamine receptors:
// Tool call { "tool": "search_targets", "arguments": { "query": "dopamine receptor D2", "organism": "Homo sapiens" } }
Search for IC50 data against a specific target:
// Tool call { "tool": "search_activities", "arguments": { "target_chembl_id": "CHEMBL2095173", "activity_type": "IC50", "limit": 100 } }
// Tool call { "tool": "batch_compound_lookup", "arguments": { "chembl_ids": ["CHEMBL25", "CHEMBL59", "CHEMBL1642", "CHEMBL1201585"] } }
This server integrates with the ChEMBL REST API for programmatic access to chemical data. For more information about ChEMBL:
- ChEMBL Website:https://www.ebi.ac.uk/chembl/
- API Documentation:https://chembl.gitbook.io/chembl-interface-documentation/web-services
- REST API Guide:https://www.ebi.ac.uk/chembl/api/data/docs
- User-Agent:ChEMBL-MCP-Server/1.0.0
- Timeout: 30 seconds
- Base URL:https://www.ebi.ac.uk/chembl/api/data
The server includes comprehensive error handling:
- Input Validation: All parameters are validated using type guards
- API Errors: Network and API errors are caught and returned with descriptive messages
- Timeout Handling: Requests timeout after 30 seconds
- Graceful Degradation: Partial failures are handled appropriately
chembl-server/ ├── src/ │ └── index.ts # Main server implementation ├── build/ # Compiled JavaScript output ├── package.json # Node.js dependencies and scripts ├── tsconfig.json # TypeScript configuration └── README.md # This file
- @modelcontextprotocol/sdk: Core MCP SDK for server implementation
- axios: HTTP client for ChEMBL API requests
- typescript: TypeScript compiler for development
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
- Check theChEMBL API documentation
- Review theModel Context Protocol specification
- Open an issue on the repository
This comprehensive ChEMBL MCP Server is developed byAugmented Nature, a leading innovator in AI-powered bioinformatics and computational chemistry solutions. Augmented Nature specializes in creating advanced tools that bridge the gap between artificial intelligence and chemical research, enabling researchers to unlock deeper insights from chemical and biological data.
Core Chemical Search & Retrieval Tools
-search_compounds- Search ChEMBL database by name, synonym, or identifier
- get_compound_info- Get detailed compound information by ChEMBL ID
- search_by_inchi- Find compounds by InChI key or InChI string
- get_compound_structure- Retrieve chemical structures in various formats
- search_similar_compounds- Find chemically similar compounds using Tanimoto similarity
Target Analysis & Drug Discovery Tools
-search_targets- Search for biological targets by name or type
- get_target_info- Get detailed target information by ChEMBL target ID
- get_target_compounds- Get compounds tested against specific targets
- search_by_uniprot- Find ChEMBL targets by UniProt accession
- get_target_pathways- Get biological pathways associated with targets
- search_activities- Search bioactivity measurements and assay results
- get_assay_info- Get detailed assay information by ChEMBL assay ID
- search_by_activity_type- Find bioactivity data by activity type and value range
- get_dose_response- Get dose-response data and activity profiles
- compare_activities- Compare bioactivity data across multiple compounds
Drug Development & Clinical Data Tools
-search_drugs- Search for approved drugs and clinical candidates
- get_drug_info- Get drug development status and clinical trial information
- search_drug_indications- Search for therapeutic indications and disease areas
- get_mechanism_of_action- Get mechanism of action and target interaction data
- analyze_admet_properties- Analyze ADMET properties
- calculate_descriptors- Calculate molecular descriptors and physicochemical properties
- predict_solubility- Predict aqueous solubility and permeability properties
- assess_drug_likeness- Assess drug-likeness using Lipinski Rule of Five
Advanced Search & Cross-Reference Tools
-substructure_search- Find compounds containing specific substructures
- batch_compound_lookup- Process multiple ChEMBL IDs efficiently
- get_external_references- Get links to external databases
- advanced_search- Complex queries with multiple chemical and biological filters
- Comprehensive Chemical Intelligence: 27 specialized tools for drug discovery
- Core Functionality: Compound search, target analysis, bioactivity data
- Advanced Features: Similarity search, batch processing, cross-references
- Resource Templates: Direct URI-based access to ChEMBL data
- Docker Support: Containerized deployment with security best practices
- Professional Documentation: Complete tool reference and examples
- Developed by Augmented Nature: Professional chemical informatics platform
If you use this project in your research or publications, please cite it as follows:
author = {Moudather Chelbi}, title = {ChEMBL MCP Server}, year = {2025}, howpublished = {https://github.com/Augmented-Nature/ChEMBL-MCP-Server}, note = {Accessed: 2025-06-29}
Access NCBI's suite of APIs, including E-utilities, BLAST, PubChem, and PMC services.
Access Reactome pathway and systems biology data via its live API.
Access and interact with Allen Institute for Neural Dynamics (AIND) metadata directly within your IDE.
A high-performance JavaScript server for the Alliance of Genome Resources (AGR) MCP.
Access the AlphaFold Protein Structure Database for protein structure prediction and analysis.
Interface with Biomart, a biological data query tool, using the pybiomart Python package.
Agent-first rewrite of genomeoncology's BioMCP in TypeScript to provide next-gen biomedical data access for agents.
Access charity and nonprofit organization data from the IRS database via CharityAPI.org.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





