mcp-server-chart vs knowledgebase-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | knowledgebase-mcp by biocontext-ai | |
|---|---|---|
| Stars | ★ 4,068 | ★ 23 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsKnowledge GraphDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 4 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
knowledgebase-mcp · Summary
BioContextAI Knowledgebase MCP server provides unified access to biomedical APIs for AI agents.
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
knowledgebase-mcp · Use cases
- Biomedical research assistants that can query multiple databases simultaneously
- Drug discovery workflows accessing protein interaction networks and pathway data
- Literature review tools that search preprint servers and academic publications
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"]
}
}
}knowledgebase-mcp · Install
Installation
Claude Desktop Setup
Edit your claude_desktop_config.json file:
{
"mcpServers": {
"biocontext_kb": {
"command": "uvx",
"args": [
"biocontext_kb@latest"
],
"env": {
"UV_PYTHON": "3.12"
}
}
}
}Using uv
Run with streamable HTTP:
export MCP_ENVIRONMENT=PRODUCTION && export PORT=8000 && uvx biocontext_kbRun with stdio transport:
export MCP_ENVIRONMENT=DEVELOPMENT && uvx biocontext_kbIDE Setup
Configure your MCP client (VS Code, Cursor, etc.) with:
{
"mcpServers": {
"biocontext_kb": {
"command": "uvx",
"args": [
"biocontext_kb@latest"
]
}
}
}