mcp-server-chart vs redm-mcp-public
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | redm-mcp-public by Cmoen11 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1 |
| 30d uses | 10,239 | — |
| Score | 84 | 37 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | — |
| 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.
redm-mcp-public · Summary
MCP server providing RedM/RDR3 native lookups, semantic search and framework documentation.
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
redm-mcp-public · Use cases
- Help developers understand native function calls like Citizen.InvokeNative(0x09C28F828EE674FA)
- Search for functionality by behavior rather than exact names (e.g., 'teleport player')
- Browse and query RedM/RDR3 framework documentation for VORP, RSGCore, and oxmysql
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"]
}
}
}redm-mcp-public · Install
Installation
HTTP Transport
Connect to the hosted HTTP endpoint: https://redm-mcp.fivem.no/mcp
VS Code / Cursor
Click the install badges in the README for one-click setup.
Claude Code
claude mcp add --transport http redm-mcp https://redm-mcp.fivem.no/mcpClaude Desktop
{
"mcpServers": {
"redm-mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://redm-mcp.fivem.no/mcp"
]
}
}
}VS Code (Copilot / Continue)
{
"servers": {
"redm-mcp": {
"type": "http",
"url": "https://redm-mcp.fivem.no/mcp"
}
}
}Zed
{
"context_servers": {
"redm-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"mcp-remote",
"https://redm-mcp.fivem.no/mcp"
]
}
}
}
}