pb_records_delete
Remove specific records from PocketBase collections by specifying the collection name or ID and the record ID to delete, ensuring precise data management within the MCP server.
Instructions
Delete a record from a collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | Collection name or ID | |
id | Yes | Record ID to delete |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"description": "Collection name or ID",
"type": "string"
},
"id": {
"description": "Record ID to delete",
"type": "string"
}
},
"required": [
"collection",
"id"
],
"type": "object"
}