advanced_search
Search, sort, and filter Alfresco content efficiently using customizable query parameters and AI-native operations through the MCP Server.
Instructions
Advanced search with sorting and filtering capabilities.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_results | No | ||
query | Yes | ||
sort_ascending | No | ||
sort_field | No | cm:modified |
Input Schema (JSON Schema)
{
"properties": {
"max_results": {
"default": 25,
"title": "Max Results",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
},
"sort_ascending": {
"default": false,
"title": "Sort Ascending",
"type": "boolean"
},
"sort_field": {
"default": "cm:modified",
"title": "Sort Field",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}