mcp-kling vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
mcp-kling by 199-mcp | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 26 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 41 | 84 |
| Official | — | — |
| Categories | MediaAI / LLM ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | JavaScript | TypeScript |
| Last commit | 11 mo ago | this month |
mcp-kling · Summary
MCP Kling is a comprehensive server providing full access to Kling AI's video generation tools via MCP protocol.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-kling · Use cases
- Content creators can generate AI videos directly through Claude for social media and marketing
- Film producers can pre-visualize scenes and create storyboards rapidly
- E-commerce platforms can implement virtual try-on features for clothing
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
mcp-kling · Install
Installation for Claude Desktop
- Get your Kling API credentials from [Kling AI Developer Console](https://app.klingai.com/global/dev/api-key)
- Add to Claude Desktop config file:
**macOS**: ~/Library/Application Support/Claude/claude_desktop_config.json **Windows**: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"mcp-kling": {
"command": "npx",
"args": ["-y", "mcp-kling@latest"],
"env": {
"KLING_ACCESS_KEY": "YOUR_ACCESS_KEY_HERE",
"KLING_SECRET_KEY": "YOUR_SECRET_KEY_HERE"
}
}
}
}- Restart Claude Desktop
For npm installation: npm install -g mcp-kling
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"]
}
}
}