pocketbase-mcp
Provides tools for interacting with PocketBase's API, enabling AI assistants to perform CRUD operations on records, manage collections, handle authentication, work with files, and administer database settings through a clean interface.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@pocketbase-mcplist all users in the customers collection"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
pocketbase-mcp
A Model Context Protocol (MCP) server for PocketBase — giving AI assistants like Claude full access to your PocketBase backend through a clean, Pythonic interface.
Overview
pocketbase-mcp bridges the gap between LLMs and your PocketBase instance. Once connected, AI assistants can list collections, perform CRUD operations on records, manage authentication, handle file uploads, and administer your database — all through natural language.
Built with FastMCP (the standard Python MCP framework) and httpx for async HTTP communication with the PocketBase REST API.
Features
Records — list, get, create, update, delete, and batch-operate on records in any collection
Collections — list, inspect, create, update, and delete collection schemas
Authentication — authenticate as a superuser or regular user via email/password or API key
Files — generate file tokens and retrieve file URLs with optional image transformations
Settings — read and update application settings
Filtering & Pagination — pass PocketBase filter expressions, sort, expand, and pagination params directly
Realtime-aware — designed with SSE subscription patterns in mind for future extension
Requirements
Python 3.11+
A running PocketBase instance (local or remote)
uv(recommended) orpip
Installation
Using pip
pip install pocketbase-mcpConfiguration
The server is configured via environment variables:
Variable | Required | Default | Description |
| Yes | — | Base URL of your PocketBase instance (e.g. |
| No | — | Superuser email for admin operations |
| No | — | Superuser password |
| No | — | Long-lived API key (alternative to email/password) |
Set them in a .env file or export directly:
export POCKETBASE_URL=http://127.0.0.1:8090
export POCKETBASE_SUPERUSER_EMAIL=admin@example.com
export POCKETBASE_SUPERUSER_PASSWORD=your-passwordRunning the Server
stdio transport (default — for Claude Desktop, Claude Code, etc.)
pocketmcpWith MCP Inspector (for development and testing)
# Terminal 1
pocketmcp
# Terminal 2
npx @modelcontextprotocol/inspector
# Connect to: http://localhost:8000/mcpConnecting to Claude
Claude Desktop
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"pocketbase": {
"command": "uv",
"args": ["run", "/absolute/path/to/pocketbase-mcp/server.py"],
"env": {
"POCKETBASE_URL": "http://127.0.0.1:8090",
"POCKETBASE_SUPERUSER_EMAIL": "admin@example.com",
"POCKETBASE_SUPERUSER_PASSWORD": "your-password"
}
}
}
}Available Tools
Records
Tool | Description |
| List records in a collection with filtering, sorting, and pagination |
| Get a single record by ID |
| Create a new record |
| Update an existing record |
| Delete a record by ID |
| Perform multiple create/update/upsert/delete operations in one request |
Collections
Tool | Description |
| List all collections |
| Get a collection schema by name or ID |
| Create a new collection with fields and API rules |
| Update a collection's schema or rules |
| Delete a collection |
Authentication
Tool | Description |
| Authenticate a user or superuser with email and password |
| Authenticate using a long-lived API key |
| Return the current authentication state |
Files
Tool | Description |
| Generate the URL for a file attached to a record |
| Create a short-lived token for accessing protected files |
Settings
Tool | Description |
| Retrieve all application settings |
| Update application settings |
Project Structure
pocketbase-mcp/
├── server.py # MCP server entry point (FastMCP)
├── tools/
│ ├── records.py # Record CRUD tools
│ ├── collections.py # Collection management tools
│ ├── auth.py # Authentication tools
│ ├── files.py # File tools
│ └── settings.py # Settings tools
├── client.py # Async PocketBase HTTP client (httpx)
├── config.py # Environment variable loading
├── pyproject.toml
└── README.mdExample Usage
Once connected to Claude, you can interact with your PocketBase instance through natural language:
"List all records in the
postscollection wherestatus = 'published', sorted bycreateddescending."
"Create a new record in
userswith name 'Alice' and role 'editor'."
"Show me the schema for the
productscollection."
"Delete the record with ID
ae40239d2bc4477fromcomments."
"Update the app name in PocketBase settings to 'My App'."
PocketBase Compatibility
This MCP server targets PocketBase v0.36.9+. The batch API requires it to be explicitly enabled in your PocketBase Dashboard under Settings → Application.
Security Notes
Never commit credentials to version control. Use environment variables or a
.envfile (add.envto.gitignore).For production deployments, prefer API key authentication over email/password.
Collection API rules in PocketBase govern what the authenticated user can actually access —
pocketbase-mcprespects these rules.
Contributing
Contributions are welcome! Please open an issue before submitting a pull request for significant changes.
Fork the repository
Create a feature branch (
git checkout -b feat/my-feature)Commit your changes
Open a pull request
License
MIT License. See LICENSE for details.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/victormpa/pocketbase-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server