Notion
searchPages
Searches all pages and databases accessible by the integration, optionally filtered by query text.
Remote kamolc4/notion-mcp
Other tools also called searchPages?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"sort": {
"type": "object",
"properties": {
"direction": {
"enum": [
"ascending",
"descending"
],
"type": "string"
},
"timestamp": {
"enum": [
"last_edited_time"
],
"type": "string"
}
}
},
"query": {
"type": "string",
"description": "Text to search for across page titles."
},
"filter": {
"type": "object",
"properties": {
"value": {
"enum": [
"page",
"database"
],
"type": "string"
},
"property": {
"enum": [
"object"
],
"type": "string"
}
},
"description": "Filter results to pages or databases only."
},
"page_size": {
"type": "integer",
"default": 100
},
"start_cursor": {
"type": "string"
}
}
}