MCP Catalogs
Home

everything vs pocketbase-mcp

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
pocketbase-mcp
by mrwyndham
Stars★ 85,748★ 134
30d uses
Score7744
Official
Categories
Developer ToolsAI / LLM ToolsOther
DatabaseDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis month4 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

pocketbase-mcp · Summary

MCP server for PocketBase databases with CRUD operations, schema management, and backup capabilities.

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

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.