pocketbase-mcp-server

create_record

Create a new record in a collection

Input Schema

NameRequiredDescriptionDefault
collectionYesCollection name
dataYesRecord data

Input Schema (JSON Schema)

{ "properties": { "collection": { "description": "Collection name", "type": "string" }, "data": { "description": "Record data", "type": "object" } }, "required": [ "collection", "data" ], "type": "object" }