SystemPrompt MCP Notion Server

by Ejb503
Verified

systemprompt_search_notion_pages_by_title

Searches specifically for Notion pages with titles matching the provided query. Useful for finding exact or similar title matches when you know the page name.

Input Schema

NameRequiredDescriptionDefault
maxResultsNoMaximum number of matching pages to return. Defaults to 10 if not specified.
titleYesTitle text to search for. Can be exact or partial match.

Input Schema (JSON Schema)

{ "additionalProperties": false, "properties": { "maxResults": { "description": "Maximum number of matching pages to return. Defaults to 10 if not specified.", "type": "number" }, "title": { "description": "Title text to search for. Can be exact or partial match.", "type": "string" } }, "required": [ "title" ], "type": "object" }