pb_collections_delete
Removes a specified collection from PocketBase MCP Server by its ID or name, designed for administrative use to manage database structure.
Instructions
Delete a collection (admin only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
idOrName | Yes | Collection ID or name to delete |
Input Schema (JSON Schema)
{
"properties": {
"idOrName": {
"description": "Collection ID or name to delete",
"type": "string"
}
},
"required": [
"idOrName"
],
"type": "object"
}