Notion MCP Server

by ramidecodes
Verified

list-comments

Input Schema

NameRequiredDescriptionDefault
block_idNoThe ID of the block to get comments from
page_idNoThe ID of the page to get comments from
page_sizeNoNumber of results to return (max 100)
start_cursorNoPagination cursor

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "block_id": { "description": "The ID of the block to get comments from", "type": "string" }, "page_id": { "description": "The ID of the page to get comments from", "type": "string" }, "page_size": { "description": "Number of results to return (max 100)", "maximum": 100, "minimum": 1, "type": "number" }, "start_cursor": { "description": "Pagination cursor", "type": "string" } }, "type": "object" }