Notion MCP Server

by ramidecodes
Verified

update-block

Input Schema

NameRequiredDescriptionDefault
block_idYesThe ID of the block to update
propertiesYesJSON string of block properties to update

Input Schema (JSON Schema)

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