MCP Catalogs
Home

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 uses10,239
Score8444
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
DatabaseDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis month4 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-chart

For 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

  1. Install the package: npm install (or yarn install)
  2. Build the project: npm run build (or yarn build)
  3. 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

  1. Build the Docker image: docker build -t pocketbase-mcp .
  2. 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-mcp

VS 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}"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.