mcp-server-chart vs sparql-llm
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | sparql-llm by sib-swiss | |
|---|---|---|
| Stars | ★ 4,068 | ★ 108 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsKnowledge Graph |
| Language | TypeScript | Jupyter Notebook |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
sparql-llm · Summary
MCP server that helps LLMs generate and validate SPARQL queries for biological knowledge graphs.
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
sparql-llm · Use cases
- Helping researchers write SPARQL queries to retrieve biological data from knowledge graphs
- Validating SPARQL queries before execution against biological endpoints
- Enabling LLM assistants to understand biological database schemas and query structures
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"]
}
}
}sparql-llm · Install
Installation
pip install sparql-llmOr with uv:
uv add sparql-llmClaude Desktop Configuration
Add this to your mcp.json file:
{
"servers": {
"expasy-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"sparql-llm"
]
}
}
}Using HTTP Server
The public HTTP server is available at: https://chat.expasy.org/mcp
In your VSCode mcp.json:
{
"servers": {
"expasy-mcp-http": {
"url": "https://chat.expasy.org/mcp/",
"type": "http"
}
}
}