MCPSharp vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
MCPSharp by afrise | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 369 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 47 | 84 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | C# | TypeScript |
| Last commit | 7 mo ago | this month |
MCPSharp · Summary
MCPSharp is a .NET library for building MCP servers and clients with tools, resources, and prompts.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
MCPSharp · Use cases
- Building MCP-compliant APIs for AI assistants like Claude Desktop
- Exposing existing .NET code as MCP endpoints with minimal configuration
- Integrating with Microsoft.Extensions.AI and Semantic Kernel ecosystems
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
MCPSharp · Install
Installation
dotnet add package MCPSharpQuick Start
using MCPSharp;
public class Calculator
{
[McpTool("add", "Adds two numbers")]
public static int Add([McpParameter(true)] int a, [McpParameter(true)] int b)
{
return a + b;
}
}
await MCPServer.StartAsync("CalculatorServer", "1.0.0");Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcpsharp-example": {
"command": "dotnet",
"args": ["run", "--project", "/path/to/your/project.csproj"],
"env": {}
}
}
}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"]
}
}
}