TriliumNext Notes' MCP Server
TriliumNext Notes의 MCP 서버
⚠️ 면책 조항: 이 도구는 https://github.com/TriliumNext/Notes/issues/705 의 프로토타입입니다. 개발자용으로만 권장합니다. 이 도구를 사용하기 전에 Trilium 노트를 백업하세요. ⚠️
TriliumNext Notes용 모델 컨텍스트 프로토콜 서버입니다. 이 서버는 MCP를 통해 Trilium Notes 인스턴스와 상호 작용할 수 있는 도구를 제공합니다.
업데이트: TriliumNext v0.92.6 최신 버전 지원
참고: Claude Desktop 대신 VSCode에서 Cline 확장 프로그램과 함께 사용하는 것이 좋습니다.
빠른 시작
먼저 환경 변수를 설정하세요.
TRILIUM_API_URL(기본값: http://localhost:8080/etapi )TRILIUM_API_TOKEN(필수, Trilium Notes 설정에서 가져오세요)
Related MCP server: MCP TriliumNext
설치
1. Claude Desktop과 함께 사용
Claude Desktop 구성 파일에 서버 구성을 추가합니다.
Claude 구성 파일의 mcpServers 개체에 다음 구성을 추가합니다.
개발용(Windows/Linux)
지엑스피1
"triliumnext-mcp": {
"command": "node",
"args": [
"/path/to/triliumnext-mcp/build/index.js"
],
"env": {
"TRILIUM_API_URL": "http://localhost:8080/etapi",
"TRILIUM_API_TOKEN": "<YOUR_TRILIUM_API_TOKEN>"
}
}로컬 설치(Linux)의 경우
"triliumnext-mcp": {
"command": "npx",
"args": [
"-y",
"triliumnext-mcp"
],
"env": {
"TRILIUM_API_URL": "http://localhost:8080/etapi",
"TRILIUM_API_TOKEN": "<YOUR_TRILIUM_API_TOKEN>"
}
}로컬 설치(Windows)
"triliumnext-mcp": {
"command": "cmd",
"args": [
"/k",
"npx",
"-y",
"triliumnext-mcp"
],
"env": {
"TRILIUM_API_URL": "http://localhost:8080/etapi",
"TRILIUM_API_TOKEN": "<YOUR_TRILIUM_API_TOKEN>"
}
}구성 파일의 위치:
윈도우:
%APPDATA%/Claude/claude_desktop_config.jsonMacOS:
~/Library/Application Support/Claude/claude_desktop_config.json
사용 가능한 도구
서버는 노트 관리를 위해 다음과 같은 도구를 제공합니다.
search_notes- 노트 검색필요 사항: 검색어
선택 사항: fastSearch(전체 텍스트 검색 토글), includeArchivedNotes
get_note- ID로 노트 내용 검색필요 사항: 메모 ID
create_note- 새 노트 만들기필요 사항: 부모 노트 ID, 제목, 유형, 콘텐츠
선택 사항: 코드/파일/이미지 메모에 대한 MIME 유형
지원되는 노트 유형: 텍스트, 코드, 파일, 이미지, 검색, 책, 관계 맵, 렌더링
update_note- 기존 노트 업데이트필요 사항: 메모 ID
선택 사항: 새로운 제목, 새로운 콘텐츠
delete_note- 메모 삭제필요 사항: 메모 ID
개발
서버에 기여하거나 수정하고 싶다면:
# Clone the repository
git clone https://github.com/tan-yong-sheng/triliumnext-mcp.git
# Install dependencies
npm install
# Build the server
npm run build
# For development with auto-rebuild
npm run watchMaintenance
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
- AlicenseCqualityDmaintenanceA Model Context Protocol server that implements a simple notes system, allowing users to create, list, and summarize text notes.36ISC
- 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.41
- FlicenseBqualityDmaintenanceA simple server for saving, listing, and searching notes persisted to a local JSON file. It enables users to manage their personal notes using natural language via the Model Context Protocol.3
- FlicenseNot gradedqualityAmaintenanceA 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.15564
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
Markdown-based note-taking with a hosted MCP server. Your notes serve you and your AI.
Appeared in Searches
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/tan-yong-sheng/triliumnext-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server