Logseq MCP Server

logseq_get_page

Retrieve metadata and content of a specific Logseq page by its identifier, with optional inclusion of child blocks, enabling detailed knowledge graph interaction.

Instructions

Retrieve detailed information about a specific page including metadata and content

Input Schema

NameRequiredDescriptionDefault
include_childrenNoInclude child blocks in response
src_pageYesPage identifier (name, UUID or database ID)

Input Schema (JSON Schema)

{ "additionalProperties": false, "description": "Parameters for retrieving a specific page", "properties": { "include_children": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": false, "description": "Include child blocks in response", "title": "Include Children" }, "src_page": { "anyOf": [ { "type": "string" }, { "type": "integer" } ], "description": "Page identifier (name, UUID or database ID)", "examples": [ "[[Journal/2024-03-15]]", 12345 ], "title": "Src Page" } }, "required": [ "src_page" ], "title": "GetPageParams", "type": "object" }
ID: 0mdgzmmv3r