ChEMBL-MCP-Server vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
ChEMBL-MCP-Server by Augmented-Nature | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 83 | ★ 149 |
| 30d uses | — | — |
| Score | 48 | 85 |
| Official | — | — |
| Categories | DatabaseAI / LLM ToolsDeveloper Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | JavaScript | Python |
| Last commit | 5 mo ago | 2 mo ago |
ChEMBL-MCP-Server · Summary
A comprehensive MCP server providing 22 specialized tools for ChEMBL chemical database access in drug discovery research.
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
ChEMBL-MCP-Server · Use cases
- Drug discovery researchers querying bioactivity data for specific targets
- Chemists searching for compounds with specific structural properties
- AI systems performing integrated analysis of chemical data through MCP
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
ChEMBL-MCP-Server · Install
Installation
Prerequisites
- Node.js (v16 or higher)
- npm or yarn
Setup
- Clone the repository:
git clone <repository-url>
cd chembl-server- Install dependencies:
npm install- Build the project:
npm run buildAdding to Claude Desktop
Add the server to your Claude Desktop MCP configuration:
{
"mcpServers": {
"chembl": {
"command": "node",
"args": ["/path/to/chembl-server/build/index.js"],
"env": {}
}
}
}ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server