pb_records_create
Add new entries to a specified collection in PocketBase MCP Server by providing collection details and record data, with optional response customization.
Instructions
Create a new record in a collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | Collection name or ID | |
data | Yes | Record data to create | |
expand | No | Relations to expand in response | |
fields | No | Fields to return in response |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"description": "Collection name or ID",
"type": "string"
},
"data": {
"description": "Record data to create",
"type": "object"
},
"expand": {
"description": "Relations to expand in response",
"type": "string"
},
"fields": {
"description": "Fields to return in response",
"type": "string"
}
},
"required": [
"collection",
"data"
],
"type": "object"
}