PocketBase MCP Server

by mabeldata
Verified

create_record

Add a new record to a PocketBase collection by specifying the collection name or ID and providing the required data in key-value pairs.

Instructions

Create a new record in a PocketBase collection.

Input Schema

NameRequiredDescriptionDefault
collectionYesThe name or ID of the PocketBase collection.
dataYesThe data for the new record (key-value pairs).

Input Schema (JSON Schema)

{ "properties": { "collection": { "description": "The name or ID of the PocketBase collection.", "type": "string" }, "data": { "additionalProperties": true, "description": "The data for the new record (key-value pairs).", "type": "object" } }, "required": [ "collection", "data" ], "type": "object" }
ID: llc3xla20m