mcp-server-chart vs SharpToolsMCP
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | SharpToolsMCP by kooshi | |
|---|---|---|
| Stars | ★ 4,068 | ★ 197 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsFile System |
| Language | TypeScript | C# |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
SharpToolsMCP · Summary
A comprehensive MCP server for C# development with Roslyn-powered code analysis and modification capabilities.
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
SharpToolsMCP · Use cases
- AI-powered C# code analysis and refactoring
- Automated code modification and generation
- C# solution navigation and documentation generation
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"]
}
}
}SharpToolsMCP · Install
Installation
Prerequisites
- .NET 8+ SDK
- .NET SDK of the target solution
Building
dotnet build SharpTools.slnSSE Server (HTTP)
cd SharpTools.SseServer
dotnet run -- --port 3001 --log-file ./logs/mcp-sse-server.log --log-level DebugStdio Server Configuration (VSCode Copilot)
"mcp": {
"servers": {
"SharpTools": {
"type": "stdio",
"command": "/path/to/repo/SharpToolsMCP/SharpTools.StdioServer/bin/Debug/net8.0/SharpTools.StdioServer",
"args": [
"--log-directory",
"/var/log/sharptools/",
"--log-level",
"Debug"
]
}
}
}