pocketbase-mcp
A Model Context Protocol server that provides AI assistants like Claude with full access to PocketBase backends through natural language. It enables CRUD operations on records, collection management, authentication, file handling, and database administration via a Pythonic interface.
README
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-mcp
Configuration
The server is configured via environment variables:
| Variable | Required | Default | Description |
|---|---|---|---|
POCKETBASE_URL |
Yes | — | Base URL of your PocketBase instance (e.g. http://127.0.0.1:8090) |
POCKETBASE_SUPERUSER_EMAIL |
No | — | Superuser email for admin operations |
POCKETBASE_SUPERUSER_PASSWORD |
No | — | Superuser password |
POCKETBASE_API_KEY |
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-password
Running the Server
stdio transport (default — for Claude Desktop, Claude Code, etc.)
pocketmcp
<!-- ### Streamable HTTP transport (for remote/multi-client setups)
uv run server.py --transport streamable-http --port 8000
``` -->
### With MCP Inspector (for development and testing)
```bash
# Terminal 1
pocketmcp
# Terminal 2
npx @modelcontextprotocol/inspector
# Connect to: http://localhost:8000/mcp
Connecting 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 |
List records in a collection with filtering, sorting, and pagination |
get_record |
Get a single record by ID |
create_record |
Create a new record |
update_record |
Update an existing record |
delete_record |
Delete a record by ID |
batch_records |
Perform multiple create/update/upsert/delete operations in one request |
Collections
| Tool | Description |
|---|---|
list_collections |
List all collections |
get_collection |
Get a collection schema by name or ID |
create_collection |
Create a new collection with fields and API rules |
update_collection |
Update a collection's schema or rules |
delete_collection |
Delete a collection |
Authentication
| Tool | Description |
|---|---|
auth_with_password |
Authenticate a user or superuser with email and password |
auth_with_api_key |
Authenticate using a long-lived API key |
get_auth_store |
Return the current authentication state |
Files
| Tool | Description |
|---|---|
get_file_url |
Generate the URL for a file attached to a record |
create_file_token |
Create a short-lived token for accessing protected files |
Settings
| Tool | Description |
|---|---|
get_settings |
Retrieve all application settings |
update_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.md
Example 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.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.