mcp-server-chart vs mcp-csharp-starter
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-csharp-starter by SamMorrowDrums | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 36 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | C# |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-csharp-starter · Summary
A feature-complete MCP server template in C# with tools, resources, and prompts using .NET 8.
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-csharp-starter · Use cases
- Building custom AI tools for .NET applications
- Creating MCP servers for enterprise integration
- Developing AI-powered code review 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-csharp-starter · Install
Installation
- Prerequisites: [.NET 8.0 SDK](https://dotnet.microsoft.com/download/dotnet/8.0)
- Clone the repository
``bash git clone https://github.com/SamMorrowDrums/mcp-csharp-starter.git cd mcp-csharp-starter ``
- Restore dependencies
``bash dotnet restore ``
- Run the server
```bash # stdio transport dotnet run
# HTTP transport dotnet run -- --http --port 8080 ```
Claude Desktop Configuration
{
"mcpServers": {
"csharp-starter": {
"command": "dotnet",
"args": ["run", "--project", "/path/to/mcp-csharp-starter"],
"env": {
"DOTNET_ENVIRONMENT": "Development"
}
}
}
}