archive_page
Archive (trash) a Notion page by providing its page ID. This tool integrates with the Notion MCP server to manage content removal efficiently and programmatically.
Instructions
Archive (trash) a Notion page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pageId | Yes | The ID of the page to archive |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"pageId": {
"description": "The ID of the page to archive",
"type": "string"
}
},
"required": [
"pageId"
],
"type": "object"
}