Joplin Server MCP
MCP server for Joplin Server that gives LLMs full access to notes, notebooks, tags, and attachments via the REST API.
README
Joplin Server MCP
Model Context Protocol server for Joplin Server. Gives LLMs full access to your notes, notebooks, tags, and attachments via the Joplin Server REST API.
What is Joplin Server?
Joplin is an open-source note-taking app with Markdown support, end-to-end encryption, and sync across devices. Joplin Server is the sync backend that stores and syncs your data. You can run it yourself using the official Docker image or use the managed Joplin Cloud service.
Note: This MCP server connects to Joplin Server REST API, not the Joplin Desktop Web Clipper.
Joplin Cloud: Should work with
JOPLIN_SERVER_URL=https://joplincloud.com, but this has not been tested. If you try it — please open an issue with your results.
Tools
| Tool | Description |
|---|---|
ping_joplin |
Check server connectivity |
list_notebooks |
List all notebooks |
get_notebook |
Get notebook details with notes and sub-notebooks |
create_notebook |
Create a new notebook |
update_notebook |
Rename or move a notebook (with circular reference check) |
delete_notebook |
Delete a notebook (with optional force for non-empty) |
list_notes |
List notes, optionally filtered by notebook |
get_all_notes |
Get all notes with pagination, sorting, and notebook filter |
search_notes |
Search notes by text in title or body |
get_note |
Get note text (resource references replaced with names) |
get_notes_batch |
Read multiple notes at once (up to 50, parallel) |
get_note_full |
Get note with all resources embedded as base64 |
create_note |
Create a new note |
export_note |
Export note as markdown with resources as named base64 blocks |
update_note |
Update note title, body, or move to another notebook |
delete_note |
Delete a note |
list_tags |
List all tags |
create_tag |
Create a new tag |
delete_tag |
Delete a tag |
get_note_tags |
List tags assigned to a note |
add_tag_to_note |
Add a tag to a note |
remove_tag_from_note |
Remove a tag from a note |
get_note_resources |
List resources attached to a note |
get_resource_info |
Get resource metadata |
download_resource |
Download a resource as base64 |
Setup
Prerequisites
- A running Joplin Server instance or Joplin Cloud account
- User credentials (email + password)
Environment variables
| Variable | Required | Default | Description |
|---|---|---|---|
JOPLIN_SERVER_URL |
Yes | — | Joplin Server URL |
JOPLIN_EMAIL |
Yes | — | User email |
JOPLIN_PASSWORD |
Yes | — | User password |
MCP_TRANSPORT |
No | stdio |
Transport: stdio or sse |
MCP_HOST |
No | 0.0.0.0 |
SSE listen host |
MCP_PORT |
No | 8081 |
SSE listen port |
Run with Docker
docker run -d \
-e JOPLIN_SERVER_URL=https://your-joplin-server.example.com \
-e JOPLIN_EMAIL=your@email.com \
-e JOPLIN_PASSWORD=your_password \
-p 8081:8081 \
alexfail2/joplin-mcp
The container defaults to SSE transport. The endpoint will be available at http://localhost:8081/sse.
Run locally (stdio)
pip install mcp httpx
python app/server.py
Build from source
docker build -t joplin-mcp .
MCP client configuration
SSE (Docker)
{
"mcpServers": {
"joplin": {
"url": "http://localhost:8081/sse"
}
}
}
stdio (local)
{
"mcpServers": {
"joplin": {
"command": "python",
"args": ["/path/to/app/server.py"],
"env": {
"JOPLIN_SERVER_URL": "https://your-joplin-server.example.com",
"JOPLIN_EMAIL": "your@email.com",
"JOPLIN_PASSWORD": "your_password"
}
}
}
}
How it works
The server authenticates with Joplin Server via email/password sessions and builds an in-memory index of all items (notes, notebooks, tags) with a 2-minute TTL cache. Incremental sync compares server-side updated_time with cached etags, fetching only changed items (typical refresh: ~5s vs ~35s full rebuild). The index is persisted to disk so container restarts are instant. Resource metadata is loaded lazily on first access. Background refresh keeps the index up to date without blocking requests. All IDs are validated (32-char hex) before API calls.
Joplin's internal serialization format (title + markdown body + metadata block) is parsed and presented as clean structured output.
License
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。