mcp-server-chart vs AlphaFold-MCP-Server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | AlphaFold-MCP-Server by Augmented-Nature | |
|---|---|---|
| Stars | ★ 4,068 | ★ 34 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsOther |
| 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.
AlphaFold-MCP-Server · Summary
A comprehensive MCP server providing access to AlphaFold Protein Structure Database with tools for structure retrieval and analysis.
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
AlphaFold-MCP-Server · Use cases
- Researchers can quickly retrieve and analyze protein structures for comparative studies
- Bioinformaticians can perform batch processing on multiple protein structures simultaneously
- Structural biologists can prepare visualization files with confidence score coloring for presentations
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"]
}
}
}AlphaFold-MCP-Server · Install
# Clone or create the server directory
npm install
# Build the server
npm run buildAdd to your MCP configuration:
{
"mcpServers": {
"alphafold-server": {
"command": "node",
"args": ["/path/to/alphafold-server/build/index.js"]
}
}
}