mcp-server-chart vs shaderc-vkrunner-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | shaderc-vkrunner-mcp by mehmetoguzderin | |
|---|---|---|
| Stars | ★ 4,068 | ★ 6 |
| 30d uses | 10,239 | — |
| Score | 84 | 34 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | C++ |
| Last commit | this month | 9 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
shaderc-vkrunner-mcp · Summary
A toy MCP server for AI agents to safely code, compile, and run GPU shaders using Vulkan via CPU emulation.
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
shaderc-vkrunner-mcp · Use cases
- AI-assisted shader development and optimization
- Vulkan shader education and experimentation
- Testing shader features without physical GPU hardware
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"]
}
}
}shaderc-vkrunner-mcp · Install
Installation
- Clone the repository:
git clone https://github.com/mehmetoguzderin/shaderc-vkrunner-mcp
cd shaderc-vkrunner-mcp- Build the Docker image:
docker build -t shaderc-vkrunner-mcp -f Dockerfile .VS Code Integration
Add this to your VS Code mcp.json:
"shaderc-vkrunner-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-v", "${workspaceFolder}:/work",
"shaderc-vkrunner-mcp",
"--work-dir",
"/work"
]
}