Notion MCP Server

by ramidecodes
Verified

create-comment

Input Schema

NameRequiredDescriptionDefault
discussion_idNoOptional discussion ID for threaded comments
page_idYesThe ID of the page to comment on
textYesThe comment text content

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "discussion_id": { "description": "Optional discussion ID for threaded comments", "type": "string" }, "page_id": { "description": "The ID of the page to comment on", "type": "string" }, "text": { "description": "The comment text content", "type": "string" } }, "required": [ "page_id", "text" ], "type": "object" }