mcp-server-chart vs pocketbase-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | pocketbase-mcp by mrwyndham | |
|---|---|---|
| Stars | ★ 4,068 | ★ 134 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | DatabaseDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 4 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
pocketbase-mcp · Summary
MCP server for PocketBase databases with CRUD operations, schema management, and backup capabilities.
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
pocketbase-mcp · Use cases
- Building applications with PocketBase backend through AI assistants
- Managing PocketBase database operations without leaving the IDE
- Automating database schema creation and record management
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"]
}
}
}pocketbase-mcp · Install
Installation
Local Setup
- Install the package:
npm install(oryarn install) - Build the project:
npm run build(oryarn build) - Configure your MCP client settings (e.g., in
cline_mcp_settings.json):
{
"mcpServers": {
"pocketbase-server": {
"command": "node",
"args": ["build/index.js"],
"env": {
"POCKETBASE_URL": "http://127.0.0.1:8090",
"POCKETBASE_ADMIN_EMAIL": "admin@example.com",
"POCKETBASE_ADMIN_PASSWORD": "admin_password"
},
"disabled": false,
"autoApprove": ["create_record", "create_collection"]
}
}
}Docker Setup
- Build the Docker image:
docker build -t pocketbase-mcp . - Run the container with environment variables:
docker run -d \ --name pocketbase-mcp \ -e POCKETBASE_URL=http://127.0.0.1:8090 \ -e POCKETBASE_ADMIN_EMAIL=your_admin@example.com \ -e POCKETBASE_ADMIN_PASSWORD=your_admin_password \ pocketbase-mcpVS Code Setup
Create or update .vscode/mcp.json with the following configuration:
{
"inputs": [
{
"type": "promptString",
"id": "pocketbase-admin-email",
"description": "PocketBase Admin Email",
"password": false
},
{
"type": "promptString",
"id": "pocketbase-admin-password",
"description": "PocketBase Admin Password",
"password": true
}
],
"servers": {
"pocketbaseServer": {
"type": "stdio",
"command": "node",
"args": ["build/index.js"],
"env": {
"POCKETBASE_URL": "http://127.0.0.1:8090",
"POCKETBASE_ADMIN_EMAIL": "${input:pocketbase-admin-email}",
"POCKETBASE_ADMIN_PASSWORD": "${input:pocketbase-admin-password}"
}
}
}
}