Logseq MCP Server

logseq_create_page

Create new Logseq pages with customizable properties, tags, and formats. Automate journal page creation with date formatting and initial blocks for efficient knowledge management.

Instructions

Create a new page in Logseq with optional properties. Features: - Journal page creation with date formatting - Custom page properties (tags, status, etc.) - Format selection (Markdown/Org-mode) - Automatic first block creation Perfect for template-based page creation and knowledge management.

Input Schema

NameRequiredDescriptionDefault
create_first_blockNoCreate initial block
formatNoPage formatmarkdown
journalNoJournal page flag
page_nameYesName of the page to create
propertiesNoPage properties

Input Schema (JSON Schema)

{ "additionalProperties": false, "description": "Parameters for creating a new page in Logseq.", "properties": { "create_first_block": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": true, "description": "Create initial block", "title": "Create First Block" }, "format": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": "markdown", "description": "Page format", "title": "Format" }, "journal": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": false, "description": "Journal page flag", "title": "Journal" }, "page_name": { "description": "Name of the page to create", "title": "Page Name", "type": "string" }, "properties": { "anyOf": [ { "type": "object" }, { "type": "null" } ], "default": null, "description": "Page properties", "title": "Properties" } }, "required": [ "page_name" ], "title": "CreatePageParams", "type": "object" }
ID: 0mdgzmmv3r