Cover image
dynamicendpoints_advanced-pocketbase-mcp-server
Public

dynamicendpoints_advanced-pocketbase-mcp-server

Try Now
2025-04-03

镜像://github.com/dynamicendpoints/advanced-pocketbase-mcp-server

3 years

Works with Finder

0

Github Watches

0

Github Forks

0

Github Stars

Advanced PocketBase MCP Server

smithery badge A comprehensive MCP server that provides sophisticated tools for interacting with PocketBase databases. This server enables advanced database operations, schema management, and data manipulation through the Model Context Protocol (MCP).

pocketbase-mcp-server MCP server

Changelog

v2.0.0 (April 2, 2025)

Added

  • Enhanced admin authentication support with environment variables
  • Added support for admin impersonation via the impersonate_user tool
  • Improved error handling for authentication operations
  • Added comprehensive TypeScript type definitions for better development experience
  • Added support for Cline integration

Fixed

  • Fixed TypeScript errors in the PocketBase client implementation
  • Improved schema field handling with proper type annotations
  • Fixed issues with optional schema field properties

Changed

  • Updated the authentication flow to support multiple authentication methods
  • Improved documentation with more detailed examples
  • Enhanced environment variable configuration options

Features

Collection Management

  • Create and manage collections with custom schemas
  • Migrate collection schemas with data preservation
  • Advanced index management (create, delete, list)
  • Schema validation and type safety
  • Retrieve collection schemas and metadata

Record Operations

  • CRUD operations for records
  • Advanced querying with filtering, sorting, and aggregation
  • Batch import/export capabilities
  • Relationship expansion support
  • Pagination and cursor-based navigation

User Management

  • User authentication and token management
  • User account creation and management
  • Password management
  • Role-based access control
  • Session handling

Database Operations

  • Database backup and restore
  • Multiple export formats (JSON/CSV)
  • Data migration tools
  • Index optimization
  • Batch operations

Available Tools

Collection Management

  • create_collection: Create a new collection with custom schema
  • get_collection_schema: Get schema details for a collection
  • migrate_collection: Migrate collection schema with data preservation
  • manage_indexes: Create, delete, or list collection indexes

Record Operations

  • create_record: Create a new record in a collection
  • list_records: List records with optional filters and pagination
  • update_record: Update an existing record
  • delete_record: Delete a record
  • query_collection: Advanced query with filtering, sorting, and aggregation
  • import_data: Import data into a collection with create/update/upsert modes

User Management

  • authenticate_user: Authenticate a user and get auth token
  • create_user: Create a new user account
  • list_auth_methods: List all available authentication methods
  • authenticate_with_oauth2: Authenticate a user with OAuth2
  • authenticate_with_otp: Authenticate a user with one-time password
  • auth_refresh: Refresh authentication token
  • request_verification: Request email verification
  • confirm_verification: Confirm email verification with token
  • request_password_reset: Request password reset
  • confirm_password_reset: Confirm password reset with token
  • request_email_change: Request email change
  • confirm_email_change: Confirm email change with token
  • impersonate_user: Impersonate another user (admin only)

Database Operations

  • backup_database: Create a backup of the PocketBase database with format options
  • import_data: Import data with various modes (create/update/upsert)

Configuration

The server requires the following environment variables:

  • POCKETBASE_URL: URL of your PocketBase instance (e.g., "http://127.0.0.1:8090")

Optional environment variables:

  • POCKETBASE_ADMIN_EMAIL: Admin email for certain operations
  • POCKETBASE_ADMIN_PASSWORD: Admin password
  • POCKETBASE_DATA_DIR: Custom data directory path

Usage Examples

Collection Management

// Create a new collection
await mcp.use_tool("pocketbase", "create_collection", {
  name: "posts",
  schema: [
    {
      name: "title",
      type: "text",
      required: true
    },
    {
      name: "content",
      type: "text",
      required: true
    }
  ]
});

// Manage indexes
await mcp.use_tool("pocketbase", "manage_indexes", {
  collection: "posts",
  action: "create",
  index: {
    name: "title_idx",
    fields: ["title"],
    unique: true
  }
});

Advanced Querying

// Query with filtering, sorting, and aggregation
await mcp.use_tool("pocketbase", "query_collection", {
  collection: "posts",
  filter: "created >= '2024-01-01'",
  sort: "-created",
  aggregate: {
    totalLikes: "sum(likes)",
    avgRating: "avg(rating)"
  },
  expand: "author,categories"
});

Data Import/Export

// Import data with upsert mode
await mcp.use_tool("pocketbase", "import_data", {
  collection: "posts",
  data: [
    {
      title: "First Post",
      content: "Hello World"
    },
    {
      title: "Second Post",
      content: "More content"
    }
  ],
  mode: "upsert"
});

// Backup database
await mcp.use_tool("pocketbase", "backup_database", {
  format: "json" // or "csv"
});

Schema Migration

// Migrate collection schema
await mcp.use_tool("pocketbase", "migrate_collection", {
  collection: "posts",
  newSchema: [
    {
      name: "title",
      type: "text",
      required: true
    },
    {
      name: "content",
      type: "text",
      required: true
    },
    {
      name: "tags",
      type: "json",
      required: false
    }
  ],
  dataTransforms: {
    // Optional field transformations during migration
    tags: "JSON.parse(oldTags)"
  }
});

Authentication Methods

// List available authentication methods
await mcp.use_tool("pocketbase", "list_auth_methods", {
  collection: "users"
});

// Authenticate with password
await mcp.use_tool("pocketbase", "authenticate_user", {
  email: "user@example.com",
  password: "securepassword",
  collection: "users"
});

// Authenticate with OAuth2
await mcp.use_tool("pocketbase", "authenticate_with_oauth2", {
  provider: "google",
  code: "auth_code_from_provider",
  codeVerifier: "code_verifier_from_pkce",
  redirectUrl: "https://your-app.com/auth/callback",
  collection: "users"
});

// Request password reset
await mcp.use_tool("pocketbase", "request_password_reset", {
  email: "user@example.com",
  collection: "users"
});

// Confirm password reset
await mcp.use_tool("pocketbase", "confirm_password_reset", {
  token: "verification_token",
  password: "new_password",
  passwordConfirm: "new_password",
  collection: "users"
});

// Refresh authentication token
await mcp.use_tool("pocketbase", "auth_refresh", {
  collection: "users"
});

Error Handling

All tools include comprehensive error handling with detailed error messages. Errors are properly typed and include:

  • Invalid request errors
  • Authentication errors
  • Database operation errors
  • Schema validation errors
  • Network errors

Type Safety

The server includes TypeScript definitions for all operations, ensuring type safety when using the tools. Each tool's input schema is strictly typed and validated.

Best Practices

  1. Always use proper error handling with try/catch blocks
  2. Validate data before performing operations
  3. Use appropriate indexes for better query performance
  4. Regularly backup your database
  5. Use migrations for schema changes
  6. Follow security best practices for user management
  7. Monitor and optimize database performance

Development

  1. Clone the repository
  2. Install dependencies: npm install
  3. Copy .env.example to .env and configure
  4. Build: npm run build
  5. Start your PocketBase instance
  6. The MCP server will automatically connect to your PocketBase instance

Installing via Smithery

To install PocketBase Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install pocketbase-server --client claude

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Commit your changes
  4. Push to the branch
  5. Create a Pull Request

相关推荐

  • Joshua Armstrong
  • Confidential guide on numerology and astrology, based of GG33 Public information

  • https://suefel.com
  • Latest advice and best practices for custom GPT development.

  • Alexandru Strujac
  • Efficient thumbnail creator for YouTube videos

  • Emmet Halm
  • Converts Figma frames into front-end code for various mobile frameworks.

  • Elijah Ng Shi Yi
  • Advanced software engineer GPT that excels through nailing the basics.

  • https://maiplestudio.com
  • Find Exhibitors, Speakers and more

  • Lists Tailwind CSS classes in monospaced font

  • lumpenspace
  • Take an adjectivised noun, and create images making it progressively more adjective!

  • https://appia.in
  • Siri Shortcut Finder – your go-to place for discovering amazing Siri Shortcuts with ease

  • Carlos Ferrin
  • Encuentra películas y series en plataformas de streaming.

  • Yusuf Emre Yeşilyurt
  • I find academic articles and books for research and literature reviews.

  • tomoyoshi hirata
  • Sony α7IIIマニュアルアシスタント

  • apappascs
  • 发现市场上最全面,最新的MCP服务器集合。该存储库充当集中式枢纽,提供了广泛的开源和专有MCP服务器目录,并提供功能,文档链接和贡献者。

  • ShrimpingIt
  • MCP系列GPIO Expander的基于Micropython I2C的操作,源自ADAFRUIT_MCP230XX

  • jae-jae
  • MCP服务器使用剧作《无头浏览器》获取网页内容。

  • HiveNexus
  • 一个适用于中小型团队的AI聊天机器人,支持DeepSeek,Open AI,Claude和Gemini等车型。 专为中小团队设计的ai聊天应用,支持deepSeek,打开ai,claude,双子座等模型。

  • ravitemer
  • 一个功能强大的Neovim插件,用于管理MCP(模型上下文协议)服务器

  • patruff
  • Ollama和MCP服务器之间的桥梁,使本地LLMS可以使用模型上下文协议工具

    Reviews

    2 (1)
    Avatar
    user_D5sG4vM3
    2025-04-17

    DynamicEndpoints_advanced-pocketbase-mcp-server by MCP-Mirror is an impressive tool for managing endpoints dynamically on the PocketBase platform. Its advanced features and seamless integration have significantly improved my development workflow. Highly recommend for those looking for efficiency and robust functionality! Check it out at https://github.com/MCP-Mirror/DynamicEndpoints_advanced-pocketbase-mcp-server.