mcp-server-chart vs mcp-untappd-server-dotnet
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-untappd-server-dotnet by jtucker | |
|---|---|---|
| Stars | ★ 4,068 | ★ 9 |
| 30d uses | 10,239 | — |
| Score | 84 | 29 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsOther |
| Language | TypeScript | F# |
| Last commit | this month | 13 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-untappd-server-dotnet · Summary
Untappd MCP Server using Azure Functions in F# for beer data integration.
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
mcp-untappd-server-dotnet · Use cases
- Retrieving beer information and reviews from Untappd
- Tracking personal beer check-ins and history
- Creating beer discovery workflows in AI assistants
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"]
}
}
}mcp-untappd-server-dotnet · Install
Installation
Prerequisites:
- dotnet 9.0
- Docker Desktop
Configuration:
- Set up local.settings.json with your Azure connection string and Untappd API credentials:
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "<CONNECTION_STRING>",
"FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated",
"Untappd:ClientId": "",
"Untappd:ClientSecret": ""
}
}Claude Desktop Setup:
Since Claude Desktop doesn't currently support SSE configuration, you need to include a middle man component:
Edit your claude_desktop_config.json:
{
"mcpServers": {
"untappddotnet": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:7071/runtime/webhooks/mcp/sse"
]
}
}
}