Veo-4-API vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
Veo-4-API by Anil-matcha | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 147 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 48 | 84 |
| Official | — | — |
| Categories | MediaAI / LLM ToolsDeveloper Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
Veo-4-API · Summary
Python wrapper for Veo 4 API with MCP server for AI-generated 4K videos with integrated audio and character consistency.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
Veo-4-API · Use cases
- Content creators generating AI videos for social media with consistent characters
- Developers integrating video generation capabilities into their applications
- AI assistants creating custom video content in response to user requests
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
Veo-4-API · Install
Installation
Via Pip (Recommended)
pip install veo-4-apiConfiguration
Create a .env file in the root directory and add your [MuAPI](https://muapi.ai) API key:
MUAPI_API_KEY=your_muapi_api_key_hereRunning the MCP Server
- Ensure
MUAPI_API_KEYis set in your environment. - Run the server:
``bash python3 mcp_server.py ``
- To test with the MCP Inspector:
``bash npx -y @modelcontextprotocol/inspector python3 mcp_server.py ``
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"veo-4": {
"command": "python3",
"args": ["/path/to/Veo-4-API/mcp_server.py"]
}
}
}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"]
}
}
}