mcp-server-chart vs fcpxml-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | fcpxml-mcp-server by DareDev256 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 46 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | MediaProductivityDeveloper Tools |
| 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.
fcpxml-mcp-server · Summary
AI-powered MCP server for Final Cut Pro XML with 53 tools to analyze, edit, and generate timelines through natural language.
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
fcpxml-mcp-server · Use cases
- Batch inserting chapter markers from transcripts into video timelines
- Automatically detecting and fixing flash frames and gaps in video edits
- Generating rough cuts from tagged clips based on pacing requirements
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"]
}
}
}fcpxml-mcp-server · Install
Installation
- Clone & Install:
git clone https://github.com/DareDev256/fcpxml-mcp-server.git
cd fcpxml-mcp-server
pip install -e .- Configure Claude Desktop:
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"fcpxml": {
"command": "python",
"args": ["/path/to/fcpxml-mcp-server/server.py"],
"env": { "FCP_PROJECTS_DIR": "/Users/you/Movies" }
}
}
}