mcp-server-chart vs Manifold
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | Manifold by Garume | |
|---|---|---|
| Stars | ★ 4,068 | ★ 45 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOps & Infra |
| 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.
Manifold · Summary
Manifold is a .NET framework for defining operations once and exposing them via both CLI and MCP surfaces with high performance.
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
Manifold · Use cases
- Building CLI tools with MCP capabilities in .NET applications
- Creating dual-purpose command line and AI assistant tools
- Generating high-performance MCP servers from existing .NET business logic
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"]
}
}
}Manifold · Install
Install the Manifold NuGet packages based on your needs:
# For CLI applications
<ItemGroup>
<PackageReference Include="Manifold" Version="1.0.0" />
<PackageReference Include="Manifold.Generators" Version="1.0.0" PrivateAssets="all" />
<PackageReference Include="Manifold.Cli" Version="1.0.0" />
</ItemGroup>
# For MCP hosts
<ItemGroup>
<PackageReference Include="Manifold" Version="1.0.0" />
<PackageReference Include="Manifold.Generators" Version="1.0.0" PrivateAssets="all" />
<PackageReference Include="Manifold.Mcp" Version="1.0.0" />
</ItemGroup>For Claude Desktop integration, add the MCP server using:
{
"mcpServers": {
"manifold": {
"command": "dotnet",
"args": ["run", "--project", "path/to/your/project.csproj"],
"env": {
"DOTNET_ENVIRONMENT": "Development"
}
}
}
}