delete_block
Remove or archive a specific block in Notion by providing its block ID using the Notion MCP Server integration.
Instructions
Delete (move to trash) a block in Notion
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blockId | Yes | The ID of the block to delete/archive |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"blockId": {
"description": "The ID of the block to delete/archive",
"type": "string"
}
},
"required": [
"blockId"
],
"type": "object"
}