Notion MCP Server

by ramidecodes
Verified

append-blocks

Input Schema

NameRequiredDescriptionDefault
block_idYesThe ID of the block to append to
childrenYesJSON string of blocks to append

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "block_id": { "description": "The ID of the block to append to", "type": "string" }, "children": { "description": "JSON string of blocks to append", "type": "string" } }, "required": [ "block_id", "children" ], "type": "object" }