Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Trilium

БесплатноНе проверен

MCP server for connecting ChatGPT Web to a TriliumNext knowledge base, enabling search, read, create, edit, rename, and move operations through the Trilium ETAP

GitHubEmbed

Описание

MCP server for connecting ChatGPT Web to a TriliumNext knowledge base, enabling search, read, create, edit, rename, and move operations through the Trilium ETAPI.

README

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+
  • uv
  • A running TriliumNext instance with ETAPI enabled
  • A Trilium ETAPI token

Configuration

Copy the example environment file and adjust it for your Trilium instance:

cp .env.example .env

The 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-token

Optional 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=100000

TRILIUM_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
[email protected]

CF_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.server

By default, the server listens on:

http://127.0.0.1:8000/mcp

Configure 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 --build

Follow its logs or stop it with:

docker compose logs -f
docker compose down

The 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-mcp

Tools

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_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 pytest

Run linting:

uv run ruff check

The 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 calls

from github.com/Qzincs/trilium-mcp

Установка Trilium

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/Qzincs/trilium-mcp

FAQ

Trilium MCP бесплатный?

Да, Trilium MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Trilium?

Нет, Trilium работает без API-ключей и переменных окружения.

Trilium — hosted или self-hosted?

Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.

Как установить Trilium в Claude Desktop, Claude Code или Cursor?

Открой Trilium на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Trilium with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории development