L

Logseq

Query Logseq graph and pages.

·No reviews yet
Repo
Share:

About

Auto-generated

Logseq is a Model Context Protocol server in the Productivity category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

create_task
Create a new task
list_tasks
List tasks with filters
update_task
Update fields of an existing task

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Logseq.

What is the purpose of the Logseq MCP?
This MCP allows you to programmatically query your Logseq graphs and pages. It integrates Logseq functionality with applications supporting the Model Context Protocol.
How do I install the Logseq MCP in a client like Claude Desktop?
Installation typically involves adding the Logseq MCP's repository URL to your client's MCP configuration. Specific steps vary by client, so consult your client's documentation for exact instructions on adding a new MCP.
Does the Logseq MCP require API keys or other authentication?
No, the Logseq MCP does not require API keys or other authentication credentials. It operates locally via standard input/output (stdio).
What are the primary capabilities of the Logseq MCP?
The Logseq MCP enables querying of your Logseq knowledge base. This includes accessing content within pages and navigating your graph data.
What are the licensing terms for the Logseq MCP?
The Logseq MCP is community-provided and open-source, available under the license specified in its GitHub repository. You should review the repository for full licensing details.
Are there any known limitations or prerequisites for using the Logseq MCP?
A key prerequisite for using this MCP is a local Logseq installation. The MCP interacts directly with your Logseq data, so Logseq must be set up on your system for it to function.

Install Logseq

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "logseq": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-logseq"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "logseq": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-logseq"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "logseq": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-logseq"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.