mcp-server-chart vs tinymcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | tinymcp by golioth | |
|---|---|---|
| Stars | ★ 4,068 | ★ 150 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | iotDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | 11 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
tinymcp · Summary
MCP server enabling LLMs to control embedded devices via Golioth API and RPCs.
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
tinymcp · Use cases
- LLM-controlled IoT device automation and management
- Remote device monitoring and control through natural language
- Physical interaction with devices via AI agents
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"]
}
}
}tinymcp · Install
Installation
Prerequisites
- Go installed
- Golioth account and project
- Connected device
Steps
- Set environment variables:
export TINYMCP_PROJECT=<your-golioth-project-id>
export TINYMCP_DEVICE=<your-golioth-device-id>
export TINYMCP_API_KEY=<api-key-for-your-golioth-project>- Build and run the server:
go build -o tinymcp ./server
./tinymcp
# or directly:
go run ./server- For testing with MCP Inspector, connect to
http://localhost:8080