Advanced PocketBase MCP Server

create_collection

Define and create structured collections in PocketBase databases by specifying names and schemas. Simplifies database management through the Advanced PocketBase MCP Server.

Input Schema

NameRequiredDescriptionDefault
nameYesCollection name
schemaYesCollection schema

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "name": { "description": "Collection name", "type": "string" }, "schema": { "description": "Collection schema", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" }, "options": { "additionalProperties": {}, "type": "object" }, "required": { "type": "boolean" }, "type": { "type": "string" } }, "required": [ "name", "type" ], "type": "object" }, "type": "array" } }, "required": [ "name", "schema" ], "type": "object" }
ID: 75jh9xb2sg