mcp-server-chart vs ChEMBL-MCP-Server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ChEMBL-MCP-Server by Augmented-Nature | |
|---|---|---|
| Stars | ★ 4,068 | ★ 83 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | DatabaseAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 5 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
ChEMBL-MCP-Server · Summary
A comprehensive MCP server providing 22 specialized tools for ChEMBL chemical database access in drug discovery research.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
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
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}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": {}
}
}
}