MCP Catalogs
Home

time vs pocketbase-mcp

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

time
by modelcontextprotocol
pocketbase-mcp
by mrwyndham
Stars★ 85,748★ 134
30d uses
Score7744
Official
Categories
ProductivityDeveloper ToolsCommunication
DatabaseDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis month4 mo ago

time · Summary

A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.

pocketbase-mcp · Summary

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

time · Use cases

  • Assisting with international meeting scheduling across time zones
  • Providing real-time time information for location-based queries
  • Enabling time conversion for travel planning and itineraries

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

time · Install

Installation Options

**Using uv (recommended):**

uvx mcp-server-time

**Using PIP:**

pip install mcp-server-time
python -m mcp_server_time

**Configure for Claude Desktop:**

{
  "mcpServers": {
    "time": {
      "command": "uvx",
      "args": ["mcp-server-time"]
    }
  }
}

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.