Advanced PocketBase MCP Server

update_record

Modify existing records within a specified PocketBase collection by providing updated data and record ID. Ensures accurate and targeted record updates in databases managed by the MCP server.

Input Schema

NameRequiredDescriptionDefault
collectionYesCollection name
dataYesUpdated record data
idYesRecord ID

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "collection": { "description": "Collection name", "type": "string" }, "data": { "additionalProperties": {}, "description": "Updated record data", "type": "object" }, "id": { "description": "Record ID", "type": "string" } }, "required": [ "collection", "id", "data" ], "type": "object" }
ID: 75jh9xb2sg