mcp-server-chart vs nocodb-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | nocodb-mcp-server by edwinbernadus | |
|---|---|---|
| Stars | ★ 4,068 | ★ 70 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | DatabaseDeveloper ToolsProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
nocodb-mcp-server · Summary
NocoDB MCP Server enables CRUD operations on NocoDB databases through natural language commands.
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
nocodb-mcp-server · Use cases
- Manage NocoDB database content through natural language
- Perform bulk operations on NocoDB tables
- Upload JSON files to create new tables in NocoDB
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"]
}
}
}nocodb-mcp-server · Install
Installation
- Install Node.js and TypeScript
- Clone the repository and install dependencies:
npm install
npm run build- Set up environment variables in a
.envfile:
NOCODB_URL=https://your-nocodb-instance.com
NOCODB_API_TOKEN=your_api_token_here
NOCODB_BASE_ID=your_base_id_here- Configure Claude Desktop by adding to
claude_desktop_config.json:
{
"mcpServers": {
"nocodb": {
"command": "node",
"args": ["{working_folder}/dist/start.js"],
"env": {
"NOCODB_URL": "https://your-nocodb-instance.com",
"NOCODB_BASE_ID": "your_base_id_here",
"NOCODB_API_TOKEN": "your_api_token_here"
}
}
}
}Alternatively, use directly from CLI:
npx -y nocodb-mcp-server {NOCODB_URL} {NOCODB_BASE_ID} {NOCODB_API_TOKEN}