pocketbase-mcp-server
query_collection
Advanced query with filtering, sorting, and aggregation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
aggregate | No | Aggregation settings | |
collection | Yes | Collection name | |
expand | No | Relations to expand | |
filter | No | Filter expression | |
sort | No | Sort expression |
Input Schema (JSON Schema)
{
"properties": {
"aggregate": {
"description": "Aggregation settings",
"type": "object"
},
"collection": {
"description": "Collection name",
"type": "string"
},
"expand": {
"description": "Relations to expand",
"type": "string"
},
"filter": {
"description": "Filter expression",
"type": "string"
},
"sort": {
"description": "Sort expression",
"type": "string"
}
},
"required": [
"collection"
],
"type": "object"
}