PluginBench
MCP Server
Active
MIT

TriliumNext (trilium-mcp) MCP Server

io.github.OVDEN13/trilium-mcp

What is the TriliumNext (trilium-mcp) MCP server?

Read and write a self-hosted TriliumNext knowledge base over its ETAPI.

How to install TriliumNext (trilium-mcp)

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • TRILIUM_URL
    required

    Base URL of the Trilium ETAPI. Comma-separated for failover: fast LAN first, public fallback (e.g. http://192.168.0.10:8092,https://memo.example.com).

  • TRILIUM_TOKEN
    required
    secret

    ETAPI token created in Trilium under Options -> ETAPI

  • TRILIUM_HTTP_TIMEOUT_SECONDS

    Per-request HTTP timeout in seconds (default 30)

  • TRILIUM_MCP_LOG

    Tool-call log level on stderr: off / info (default) / debug

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "trilium-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/ovden13/trilium-mcp:0.1.5"
      ],
      "env": {
        "TRILIUM_URL": "<YOUR_TRILIUM_URL>",
        "TRILIUM_TOKEN": "<YOUR_TRILIUM_TOKEN>",
        "TRILIUM_HTTP_TIMEOUT_SECONDS": "<YOUR_TRILIUM_HTTP_TIMEOUT_SECONDS>",
        "TRILIUM_MCP_LOG": "<YOUR_TRILIUM_MCP_LOG>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "trilium-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/ovden13/trilium-mcp:0.1.5"
      ],
      "env": {
        "TRILIUM_URL": "<YOUR_TRILIUM_URL>",
        "TRILIUM_TOKEN": "<YOUR_TRILIUM_TOKEN>",
        "TRILIUM_HTTP_TIMEOUT_SECONDS": "<YOUR_TRILIUM_HTTP_TIMEOUT_SECONDS>",
        "TRILIUM_MCP_LOG": "<YOUR_TRILIUM_MCP_LOG>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "trilium-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/ovden13/trilium-mcp:0.1.5"
      ],
      "env": {
        "TRILIUM_URL": "<YOUR_TRILIUM_URL>",
        "TRILIUM_TOKEN": "<YOUR_TRILIUM_TOKEN>",
        "TRILIUM_HTTP_TIMEOUT_SECONDS": "<YOUR_TRILIUM_HTTP_TIMEOUT_SECONDS>",
        "TRILIUM_MCP_LOG": "<YOUR_TRILIUM_MCP_LOG>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "trilium-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/ovden13/trilium-mcp:0.1.5"
      ],
      "env": {
        "TRILIUM_URL": "<YOUR_TRILIUM_URL>",
        "TRILIUM_TOKEN": "<YOUR_TRILIUM_TOKEN>",
        "TRILIUM_HTTP_TIMEOUT_SECONDS": "<YOUR_TRILIUM_HTTP_TIMEOUT_SECONDS>",
        "TRILIUM_MCP_LOG": "<YOUR_TRILIUM_MCP_LOG>"
      }
    }
  }
}
Claude Code
claude mcp add trilium-mcp --env TRILIUM_URL=<YOUR_TRILIUM_URL> --env TRILIUM_TOKEN=<YOUR_TRILIUM_TOKEN> --env TRILIUM_HTTP_TIMEOUT_SECONDS=<YOUR_TRILIUM_HTTP_TIMEOUT_SECONDS> --env TRILIUM_MCP_LOG=<YOUR_TRILIUM_MCP_LOG> -- docker run -i --rm ghcr.io/ovden13/trilium-mcp:0.1.5

Related MCP servers

Give your AI agent stealth web scraping with Cloudflare bypass and CSS selection, powered by Scrapling.

67k
Python
BSD-3-Clause
View repository →

Give your AI coding agent full control of a live Chrome browser for automation, debugging, and performance analysis.

45k
TypeScript
Apache-2.0
View repository →

Let AI agents manage your Puter files, websites, and serverless workers over MCP.

43k
TypeScript
AGPL-3.0
View repository →

Browser automation for AI agents via MCP, powering ByteDance's Agent TARS hybrid GUI/DOM browser control.

37k
TypeScript
Apache-2.0
View repository →

Run arbitrary shell commands from an MCP-connected AI agent.

37k
TypeScript
Apache-2.0
View repository →

Filesystem access MCP server from ByteDance's UI-TARS/Agent TARS ecosystem.

37k
TypeScript
Apache-2.0
View repository →
TriliumNext (trilium-mcp) MCP Server | PluginBench