MCPify vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
MCPify by abdebek | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 4 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 38 | 84 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsWeb Scraping | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | C# | TypeScript |
| Last commit | 3 mo ago | this month |
MCPify · Summary
MCPify is a .NET library that converts OpenAPI/Swagger specs into MCP tools for AI assistants.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
MCPify · Use cases
- Expose internal .NET APIs as tools for Claude Desktop integration
- Transform public REST APIs with OpenAPI specs into MCP-accessible tools
- Create OAuth-protected MCP tools with automatic token management
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
MCPify · Install
Installation
- Install the package into your ASP.NET Core project:
dotnet add package MCPify- Configure in your Program.cs:
builder.Services.AddMcpify(options => {
options.Transport = McpTransportType.Stdio;
options.LocalEndpoints = new LocalEndpointsOptions {
Enabled = true,
ToolPrefix = "myapp_"
};
});- For Claude Desktop, add to your config file:
{
"mcpServers": {
"my-app": {
"command": "dotnet",
"args": [
"run",
"--project",
"/absolute/path/to/YourProject.csproj",
"--",
"--Mcpify:Transport=Stdio"
]
}
}
}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"]
}
}
}