trilium-mcp
Provides tools for searching, reading, creating, editing, renaming, and moving notes in a TriliumNext knowledge base via the Trilium ETAPI.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@trilium-mcpsearch notes for meeting agenda"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
trilium-mcp
MCP server for connecting ChatGPT Web to a TriliumNext knowledge base through the Trilium ETAPI.
ChatGPT Web connects to this server over Streamable HTTP, and the server calls Trilium ETAPI on its
behalf. It supports metadata search, content reads, note creation, content edits, renames, and
branch moves. Write operations require explicit confirmation and, where applicable, a current
blobId check.
Requirements
Python 3.12+
uvA running TriliumNext instance with ETAPI enabled
A Trilium ETAPI token
Related MCP server: triliumnext-mcp
Configuration
Copy the example environment file and adjust it for your Trilium instance:
cp .env.example .envThe server loads .env from the current working directory. Environment variables take precedence
over values in .env.
Required settings:
TRILIUM_ETAPI_URL=https://notes.example.com/etapi
TRILIUM_ETAPI_TOKEN=replace-with-server-side-tokenOptional settings:
MCP_HOST=127.0.0.1
MCP_PORT=8000
TRILIUM_REQUEST_TIMEOUT=30
TRILIUM_DEFAULT_SEARCH_LIMIT=10
TRILIUM_MAX_SEARCH_LIMIT=50
TRILIUM_MAX_CONTENT_CHARS=100000TRILIUM_ETAPI_URL must include the /etapi path.
Cloudflare Access
Set the following values when Cloudflare Access protects the public MCP route:
MCP_ENVIRONMENT=production
CF_ACCESS_TEAM_DOMAIN=https://your-team.cloudflareaccess.com
CF_ACCESS_AUD=your-application-audience-tag
CF_ACCESS_ALLOWED_EMAIL=you@example.comCF_ACCESS_ALLOWED_EMAIL is optional. With Cloudflare Access configured, requests to /mcp must
include a valid Cf-Access-Jwt-Assertion. The server obtains signing keys from Cloudflare's JWKS
endpoint, accepts only RS256 tokens, validates issuer, audience, expiry and nbf, and does not
log the JWT. In production, CF_ACCESS_TEAM_DOMAIN and CF_ACCESS_AUD are required.
Run
Install dependencies and start the MCP server:
uv sync
uv run python -m trilium_mcp.serverBy default, the server listens on:
http://127.0.0.1:8000/mcpConfigure your MCP client to use Streamable HTTP at that URL.
Docker
Docker Compose is the recommended way to run the server. Create .env as described above, then
start it:
docker compose up -d --buildFollow its logs or stop it with:
docker compose logs -f
docker compose downThe container listens on 0.0.0.0, while Compose publishes its port only on the host loopback
interface: http://127.0.0.1:8000/mcp. Expose it through a reverse proxy or tunnel rather than
publishing it directly to the internet.
To build and run without Compose:
docker build -t trilium-mcp .
docker run --rm --env-file .env --env MCP_HOST=0.0.0.0 \
--publish 127.0.0.1:8000:8000 trilium-mcpTools
Read tools:
search_notes— search notes by title, content, or ETAPI search syntax; returns metadata only.get_note— fetch note metadata, including parent and child branch IDs.get_day_note— get one date's default-calendar day note; creates it only with confirmation.get_week_note— get one ISO week's default-calendar week note; creates it only with confirmation.get_note_content— read raw note content with optional character-based pagination.find_in_note— find literal text in a note body and return offsets plus context.get_recent_notes— list recently modified notes.list_note_children— list direct children of a note.get_note_locations— list all tree locations for a note, including branch IDs for moves.
Write tools:
replace_note_content— replace a note body.append_note— append raw text to a note body.create_note— create a text note under a parent note.edit_note_content— replace exact text in a note body.rename_note— rename a note.move_note— move one specific branch to a new parent.
Write tools require confirm=true. Content-changing tools also require the current blobId as
expected_blob_id; read the note first with get_note or get_note_content, review the planned
change, then call the write tool with that current ID.
For text/html notes, content tools operate on raw HTML, not rendered visible text.
Development
Run the test suite:
uv run pytestRun linting:
uv run ruff checkThe test suite uses mocked HTTP responses and does not require a live Trilium server.
Project layout
src/trilium_mcp/
server.py Streamable HTTP MCP entry point
config.py environment-backed settings
client.py async Trilium ETAPI client
errors.py safe domain errors
tools/
notes.py note search, read, and write tools
branches.py child and location tools
tests/ unit tests with mocked ETAPI callsThis server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBqualityDmaintenanceA Model Context Protocol server enabling AI assistants to interact with TriliumNext notes, providing tools for creating, searching, reading, and updating notes in your knowledge base.Last updated41
- Flicense-qualityAmaintenanceA Model Context Protocol (MCP) server for interacting with TriliumNext via its ETAPI. Enables LLMs to create, read, update, and organize notes, including embedding images and files directly into note content.Last updated9961
- Alicense-qualityCmaintenanceLightning-fast MCP server for Trilium Notes — returns LLM-friendly markdown instead of raw HTML, so AI can read and write your notes naturally. Search, create, update, and organize your notes with AI.Last updated111MIT
- Alicense-qualityDmaintenanceMCP server for Wiki.js integration, enabling AI assistants to create, read, update, delete, search, and move wiki pages via natural language.Last updated1MIT
Related MCP Connectors
MCP server for AI dialogue using various LLM models via AceDataCloud
MCP server for Gainium — manage trading bots, deals, and balances via AI assistants
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Qzincs/trilium-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server