delete_page
Remove a page and all its associated blocks from a Logseq graph permanently. Specify the page name to delete it irreversibly using this MCP server tool.
Instructions
Deletes a page from the Logseq graph.
⚠️ This removes the page and all its blocks. Cannot be undone.
Args:
name: The name of the page to delete.
Returns:
Result of the deletion operation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"title": "delete_pageArguments",
"type": "object"
}