npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@feirelles/pocketbase-mcp

v2.0.0

Published

MCP server for PocketBase - query and administration via AI agents

Readme

PocketBase MCP Server

An MCP (Model Context Protocol) server that enables AI agents to interact with one or more PocketBase instances for data queries and administration.

Features

  • Multi-instance: register multiple PocketBase connections at runtime; switch between them per tool call with an instance parameter. Auth state is isolated per connection.
  • Query records with filtering, sorting, pagination, and relation expansion
  • Full CRUD operations for records and collections
  • Admin and user authentication (per registered connection)
  • Collection schema management
  • Compact TOML output format (25% smaller than JSON, configurable)
  • Type-safe TypeScript implementation with Zod validation
  • Supports all PocketBase field types: text, number, bool, email, url, date, autodate, select, json, file, relation, editor, geoPoint

Installation

npm install @feirelles/pocketbase-mcp

Or clone and build locally:

git clone https://github.com/feirelles/pocketbase-mcp.git
cd pocketbase-mcp
npm install
npm run build

Configuration

The MCP server takes no environment variables. The agent registers PocketBase instances at runtime by calling pocketbase_connect:

pocketbase_connect name="local"   url="http://localhost:8090"

# Or multiple, for parallel workflows:
pocketbase_connect name="staging" url="http://localhost:8090"
pocketbase_connect name="prod"    url="http://prod.example.com"

pocketbase_list_records instance="staging" collection="posts"
pocketbase_list_records instance="prod"    collection="posts"

pocketbase_connect validates /api/health before storing — if PocketBase isn't reachable the registration fails and nothing is stored.

When only one connection is registered, you can omit instance from every tool call — the server resolves it automatically. With two or more registered, the instance parameter is required.

MCP Client Configuration

The server takes no environment variables — the agent registers PocketBase instances at runtime with pocketbase_connect.

Claude Desktop

Add to ~/.config/claude/claude_desktop_config.json:

{
  "mcpServers": {
    "pocketbase": {
      "command": "node",
      "args": ["/path/to/pocketbase-mcp/dist/index.js"]
    }
  }
}

VS Code (Copilot)

Add to .vscode/mcp.json:

{
  "servers": {
    "pocketbase": {
      "type": "stdio",
      "command": "node",
      "args": ["${workspaceFolder}/pocketbase-mcp/dist/index.js"]
    }
  }
}

Available Tools

Every tool below accepts an optional instance: string parameter naming a registered connection. Omit it when only one connection is registered.

Connections

| Tool | Description | |------|-------------| | pocketbase_connect | Register a connection (name, url). Validates /api/health first. | | pocketbase_disconnect | Remove a connection and clear its authStore. | | pocketbase_list_connections | List registered connections with their auth state. |

Authentication

| Tool | Description | |------|-------------| | pocketbase_auth_admin | Authenticate as admin/superuser on the resolved instance | | pocketbase_auth_user | Authenticate as regular user (supports email/username) | | pocketbase_get_auth_status | Check current authentication state for the resolved instance | | pocketbase_logout | Clear auth session (per instance, or all: true for every connection) |

Records

| Tool | Description | |------|-------------| | pocketbase_list_records | List records with filtering, sorting, pagination, skipTotal | | pocketbase_get_record | Get a single record by ID | | pocketbase_create_record | Create a new record (supports expand/fields in response) | | pocketbase_update_record | Update an existing record (supports expand/fields in response) | | pocketbase_delete_record | Delete a record |

Collections (Admin Only)

| Tool | Description | |------|-------------| | pocketbase_list_collections | List all collections | | pocketbase_get_collection | Get collection schema details | | pocketbase_create_collection | Create a new collection | | pocketbase_update_collection | Update collection schema | | pocketbase_delete_collection | Delete a collection |

Administration (Admin Only)

| Tool | Description | |------|-------------| | pocketbase_health_check | Check server health (no auth). Accepts instance OR url (ad-hoc probe, no registration) | | pocketbase_list_logs | List server logs with filtering | | pocketbase_get_log | Get a single log entry by ID | | pocketbase_log_stats | Get hourly log statistics | | pocketbase_list_backups | List all available backup files | | pocketbase_create_backup | Create a new database backup | | pocketbase_restore_backup | Restore from a backup file | | pocketbase_delete_backup | Delete a backup file |

Files

| Tool | Description | |------|-------------| | pocketbase_get_file_url | Generate URL to access files with optional thumbnail |

Usage

The MCP server enables AI agents to interact with your PocketBase instance through natural language. Agents can:

  • Query and manage records across collections
  • Authenticate as admin or regular users
  • Create and modify collection schemas
  • Manage data with full CRUD capabilities

Simply ask the AI agent to perform operations on your PocketBase data, and it will use the appropriate tools automatically.

Output Format

By default, all tools return TOML format for token efficiency:

page = 1
perPage = 50
totalItems = 42
hasMore = false

[[items]]
id = "abc123def456"
title = "My Post"
status = "published"
created = "2026-01-15T10:30:00.000Z"

To get JSON instead, add format: "json" to any tool call.

Error Handling

Errors are returned in a structured format:

[error]
code = "NOT_FOUND"
message = "Collection 'posts' not found"
suggestion = "Use pocketbase_list_collections to see available collections"

Error codes:

  • NO_CONNECTION - No PocketBase connection registered (call pocketbase_connect)
  • CONNECTION_ERROR - Cannot connect to PocketBase
  • AUTH_REQUIRED - Authentication needed on this instance
  • AUTH_FAILED - Invalid credentials
  • NOT_FOUND - Resource not found
  • VALIDATION_ERROR - Invalid input data
  • PERMISSION_DENIED - Insufficient permissions
  • RATE_LIMITED - Server rate limit hit; back off
  • SERVER_ERROR - PocketBase server error

Field Types and Special Handling

Relation Fields

When creating or updating collections with relation type fields, you can use either:

  • Collection name (e.g., "users") - automatically resolved to ID
  • Collection ID (e.g., "pbc_2478858439") - used directly

The MCP server automatically resolves collection names to their IDs for convenience.

Example:

{
  "name": "author",
  "type": "relation",
  "required": true,
  "options": {
    "collectionId": "users",
    "cascadeDelete": false,
    "maxSelect": 1,
    "displayFields": ["email", "name"]
  }
}

See examples/create-collection-with-relations.json for a complete example.

Select Fields

For select fields, provide values and maxSelect in the options:

{
  "name": "status",
  "type": "select",
  "required": true,
  "options": {
    "values": ["draft", "published", "archived"],
    "maxSelect": 1
  }
}

AutoDate Fields

For autodate fields, specify when they should update:

{
  "name": "created",
  "type": "autodate",
  "options": {
    "onCreate": true,
    "onUpdate": false
  }
}

File Fields and URLs

Use pocketbase_get_file_url to generate URLs for files stored in PocketBase. Supports thumbnail generation for images (JPG, PNG, GIF, WebP).

Thumbnail formats:

  • WxH - Crop to WxH viewbox (from center)
  • WxHt - Crop from top
  • WxHb - Crop from bottom
  • WxHf - Fit inside WxH (no crop)
  • 0xH - Resize to height, preserve aspect ratio
  • Wx0 - Resize to width, preserve aspect ratio

Example:

pocketbase_get_file_url(
  collection="posts",
  recordId="abc123",
  filename="photo.jpg",
  thumb="200x200"
)

Troubleshooting

Connection Issues

If you get NO_CONNECTION: call pocketbase_connect name=<x> url=<y> first.

If you get CONNECTION_ERROR:

  1. Verify PocketBase is running: curl http://localhost:8090/api/health
  2. Check the URL you passed to pocketbase_connect
  3. Ensure no firewall blocks the port

Authentication Issues

  • Admin auth fails: Verify email/password for _superusers collection
  • User auth fails: Use identity parameter (can be email OR username)
  • Permission denied: Check collection API rules in PocketBase admin

Common Mistakes

  1. Using email instead of identity for user auth

  2. Forgetting to authenticate before admin operations

    • Use pocketbase_auth_admin first
    • Check with pocketbase_get_auth_status
  3. Creating backups without name

    • name is optional - if omitted, auto-generated

Development

# Install dependencies
npm install

# Build
npm run build

# Development mode (watch)
npm run dev

# Lint
npm run lint

# Test
npm test

Testing with MCP Inspector

npx @modelcontextprotocol/inspector node dist/index.js

License

MIT