mcp-server-chart vs Augmented-Nature-UniProt-MCP-Server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | Augmented-Nature-UniProt-MCP-Server by Augmented-Nature | |
|---|---|---|
| Stars | ★ 4,068 | ★ 19 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | DatabaseDeveloper ToolsKnowledge Graph |
| 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.
Augmented-Nature-UniProt-MCP-Server · Summary
Comprehensive UniProt MCP server with 26 bioinformatics tools for protein research 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
Augmented-Nature-UniProt-MCP-Server · Use cases
- Bioinformatics researchers can quickly retrieve detailed protein information and sequences for analysis
- AI assistants can perform complex protein queries and comparative genomics through MCP tool calling
- Drug discovery teams can analyze protein structures, variants, and pathways to identify potential therapeutic targets
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"]
}
}
}Augmented-Nature-UniProt-MCP-Server · Install
Installation
Prerequisites
- Node.js (v16 or higher)
- npm or yarn
Setup
- Clone the repository:
git clone <repository-url>
cd uniprot-server- Install dependencies:
npm install- Build the project:
npm run buildClaude Desktop Configuration
Add the server to your Claude Desktop configuration:
{
"mcpServers": {
"uniprot": {
"command": "node",
"args": ["/path/to/uniprot-server/build/index.js"],
"env": {}
}
}
}