Skip to main content
Glama

Notion MCP Server

by kimjungyeol

notion_search

Search and filter pages or databases by title in Notion, sort results by last edited time, and retrieve responses in JSON or Markdown format for easy readability or further modification.

Instructions

Search pages or databases by title in Notion

Input Schema

NameRequiredDescriptionDefault
filterNoFilter results by object type (page or database)
formatNoSpecify the response format. 'json' returns the original data structure, 'markdown' returns a more readable format. Use 'markdown' when the user only needs to read the page and isn't planning to write or modify it. Use 'json' when the user needs to read the page with the intention of writing to or modifying it.markdown
page_sizeNoNumber of results to return (max 100).
queryNoText to search for in page or database titles
sortNoSort order of results
start_cursorNoPagination start cursor

Input Schema (JSON Schema)

{ "properties": { "filter": { "description": "Filter results by object type (page or database)", "properties": { "property": { "description": "Must be 'object'", "type": "string" }, "value": { "description": "Either 'page' or 'database'", "type": "string" } }, "type": "object" }, "format": { "default": "markdown", "description": "Specify the response format. 'json' returns the original data structure, 'markdown' returns a more readable format. Use 'markdown' when the user only needs to read the page and isn't planning to write or modify it. Use 'json' when the user needs to read the page with the intention of writing to or modifying it.", "enum": [ "json", "markdown" ], "type": "string" }, "page_size": { "description": "Number of results to return (max 100). ", "type": "number" }, "query": { "description": "Text to search for in page or database titles", "type": "string" }, "sort": { "description": "Sort order of results", "properties": { "direction": { "enum": [ "ascending", "descending" ], "type": "string" }, "timestamp": { "enum": [ "last_edited_time" ], "type": "string" } }, "type": "object" }, "start_cursor": { "description": "Pagination start cursor", "type": "string" } }, "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kimjungyeol/mcp-notion-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server