mcp-server-chart vs tauri-plugin-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | tauri-plugin-mcp by P3GLEG | |
|---|---|---|
| Stars | ★ 4,068 | ★ 96 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsBrowser AutomationProductivity |
| Language | TypeScript | Rust |
| 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.
tauri-plugin-mcp · Summary
Tauri plugin enabling AI agents to debug applications through screenshots, DOM access, and input simulation.
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
tauri-plugin-mcp · Use cases
- Automated UI testing and debugging of Tauri applications by AI agents
- Visual regression testing and automated bug reporting in desktop apps
- AI-powered development assistance for cross-platform desktop applications
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"]
}
}
}tauri-plugin-mcp · Install
Installation
- **Install the Tauri plugin**:
npm install tauri-plugin-mcp- **Register the plugin in your Tauri app**:
#[cfg(debug_assertions)]
{
builder = builder.plugin(tauri_plugin_mcp::init_with_config(
tauri_plugin_mcp::PluginConfig::new("APPLICATION_NAME".to_string())
.start_socket_server(true)
.socket_path("/tmp/tauri-mcp.sock")
));
}- **Configure your AI agent** (e.g., Claude Desktop):
{
"mcpServers": {
"tauri-mcp": {
"command": "npx",
"args": ["tauri-plugin-mcp-server"]
}
}
}