mcp-server-chart vs p4mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | p4mcp-server by perforce | |
|---|---|---|
| Stars | ★ 4,068 | ★ 92 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsOps & InfraOther |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
p4mcp-server · Summary
Perforce P4 MCP Server integrates with P4 version control to provide structured read/write tools for changelists, files, and more.
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
p4mcp-server · Use cases
- AI assistants accessing Perforce repositories to analyze code changes and provide feedback
- Automating code review workflows through MCP-enabled AI tools
- Streamlining version control operations for development teams via natural language interfaces
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"]
}
}
}p4mcp-server · Install
Installation Options
**Pre-built binaries (recommended)**:
- Download for [macOS](https://github.com/perforce/p4mcp-server/releases/latest/download/p4-mcp-server-mac.zip), [Windows](https://github.com/perforce/p4mcp-server/releases/latest/download/p4-mcp-server-win.zip), or [Linux](https://github.com/perforce/p4mcp-server/releases/latest/download/p4-mcp-server-linux.zip)
- Extract and use the executable directly
**Build from source**:
- Requires Python 3.11+ with Tkinter
- Run
chmod +x build.sh && ./build.sh package(macOS/Linux) orbuild.bat package(Windows)
**MCP Client Configuration**:
{
"mcpServers": {
"perforce-p4-mcp": {
"command": "/absolute/path/to/p4-mcp-server",
"env": {
"P4PORT": "ssl:perforce.example.com:1666",
"P4USER": "your_username",
"P4CLIENT": "your_workspace"
},
"args": [
"--readonly", "--allow-usage"
]
}
}
}