mcp-server-chart vs my-monkey-app
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | my-monkey-app by KardelRuveyda | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1 |
| 30d uses | 10,239 | — |
| Score | 84 | 31 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsOther |
| Language | TypeScript | C# |
| Last commit | this month | 10 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
my-monkey-app · Summary
Interactive console app displaying monkey information with MCP server 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
my-monkey-app · Use cases
- Educational tool for learning about monkey species and their conservation status
- Example of MCP integration with a console application
- Demonstration of GitHub Copilot Agent Mode for AI-assisted development
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"]
}
}
}my-monkey-app · Install
- Clone the repository:
git clone https://github.com/KardelRuveyda/MyMonkeyApp.git - Navigate to the project directory:
cd MyMonkeyApp - Install .NET 9.0 SDK
- Build and run the application:
dotnet run
For MCP integration with Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"monkeymcp": {
"command": "docker",
"args": ["run", "-i", "--rm", "jamesmontemagno/monkeymcp"]
}
}
}