pb_records_bulk_create
Add multiple records to a collection simultaneously using this tool, streamlining data entry and management for PocketBase MCP Server.
Instructions
Create multiple records in a collection at once
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | Collection name or ID | |
records | Yes | Array of record data objects to create |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"description": "Collection name or ID",
"type": "string"
},
"records": {
"description": "Array of record data objects to create",
"items": {
"type": "object"
},
"type": "array"
}
},
"required": [
"collection",
"records"
],
"type": "object"
}