mcp-server-chart vs MCP2OSC
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | MCP2OSC by yyf | |
|---|---|---|
| Stars | ★ 4,068 | ★ 3 |
| 30d uses | 10,239 | — |
| Score | 84 | 36 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | MediaDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | JavaScript |
| 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.
MCP2OSC · Summary
MCP2OSC enables parametric control of OSC devices using natural language through Claude.
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
MCP2OSC · Use cases
- Controlling music production software like MaxMSP and SuperCollider through natural language
- Generating and debugging OSC messages for multimedia installations
- Visualizing and analyzing OSC data streams in real-time
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"]
}
}
}MCP2OSC · Install
Installation
- **Clone the repository**
``bash git clone https://github.com/yyf/MCP2OSC.git cd MCP2OSC ``
- **Install dependencies**
``bash npm install ``
- **Configure your LLM application**
Add to your Claude Desktop MCP configuration file: ``json { "mcpServers": { "mcp2osc": { "command": "node", "args": ["/path/to/MCP2OSC/mcp-server.js"], "cwd": "/path/to/MCP2OSC", "env": { "OSC_HOST": "127.0.0.1", "OSC_SEND_PORT": "9500", "OSC_RECEIVE_PORT": "9501", "WEBSOCKET_PORT": "8765", "WEBSOCKET_OSC_PORT": "9500", "MAX_OSC_MESSAGES": "2000", "OSC_LOG_ROTATION": "true" } } } } ``
- **Start the LLM application and test**
- Restart Claude after making configuration changes - Try example prompts like "What MCP tools are available" or "Ping MaxMSP at port 9500"