Enhancement Request
Add notion_write_move_page tool to the Notion MCP bridge for moving pages between workspaces or within the same workspace.
API Capability
The Notion API supports PATCH /v1/pages/{page_id} with parent field to move pages:
{
"parent": {
"type": "page_id",
"page_id": "new-parent-id"
}
}
Requirements
- Move pages between workspaces (if permissions allow)
- Move pages within the same workspace
- Preserve all block content and properties
- Follow Bridged-External pattern (M6)
- Permission:
ask (destructive move)
Acceptance Criteria
References
Enhancement Request
Add
notion_write_move_pagetool to the Notion MCP bridge for moving pages between workspaces or within the same workspace.API Capability
The Notion API supports
PATCH /v1/pages/{page_id}withparentfield to move pages:{ "parent": { "type": "page_id", "page_id": "new-parent-id" } }Requirements
ask(destructive move)Acceptance Criteria
go test -raceReferences