joplin-mcp
A Model Context Protocol server that turns your Joplin notebook into a tool an LLM can actually use — read, search, write, and organize notes, and pull OCR'd text straight out of your screenshots.
README
📓 Joplin MCP Server
A Model Context Protocol server that turns your Joplin notebook into a tool an LLM can actually use — read, search, write, and organize notes, and pull OCR'd text straight out of your screenshots.
What is this?
Joplin ships a local Web Clipper / Data API (http://127.0.0.1:41184) that can drive the whole app — notes, notebooks, tags, attachments — over plain HTTP.
This project wraps that API as an MCP server, so any MCP-compatible client (Claude Code, Claude Desktop, or your own agent) can:
- Browse your notebook tree and list notes inside any notebook
- Read a note's full Markdown body
- Full-text search across your entire Joplin database
- Create, rename, move, and delete both notes and notebooks
- Download an embedded attachment (screenshot, PDF, PoC file, ...) to disk so it can be viewed
- Pull OCR-extracted text out of an image/PDF attachment — read what's inside a screenshot without ever opening it
No plugin needs to be installed inside Joplin itself — everything runs through the Data API that's already built in.
Features
| Tool | What it does |
|---|---|
list_notebooks |
List every notebook (folder), with id, title, and parent_id |
create_notebook |
Create a new notebook, optionally nested under a parent |
update_notebook |
Rename and/or move a notebook to a different parent |
delete_notebook |
Delete a notebook, including everything inside it (moves it to Joplin's trash) |
list_notes |
List notes, optionally scoped to one notebook, paginated |
search_notes |
Full-text search using Joplin's native search syntax (title:, tag:, ...) |
get_note |
Fetch a note's full Markdown body + metadata |
create_note |
Create a new note (title, Markdown body, target notebook, to-do flag) |
update_note |
Rename, edit, and/or move a note (also edits body / to-do status) |
delete_note |
Delete a note (moves it to Joplin's trash) |
get_resource_info |
Get metadata (mime type, extension, size) for an attached file |
get_resource_file |
Download an attachment's raw bytes to a local path so it can be opened/viewed |
get_resource_ocr_text |
Read back the text Joplin's built-in OCR engine recognized inside an image/PDF attachment |
Requirements
- Joplin desktop, running, with the Web Clipper service enabled
- A Joplin Web Clipper authorization token
- Python 3.12+
- uv (recommended) — or plain
pip
Installation
git clone https://github.com/<your-username>/joplin-mcp.git
cd joplin-mcp
# with uv (recommended, uses the committed uv.lock for reproducible installs)
uv sync
# — or with plain pip —
pip install "httpx>=0.28.1" "mcp[cli]>=1.28.1"
1. Enable the Web Clipper service in Joplin
Joplin → Tools → Options → Web Clipper → turn it on. Note the port shown (default 41184).
2. Grab your access token
Same screen → "Advanced options" → "Copy token". Keep this secret — anyone with it has full read/write access to your entire notebook.
3. (Optional) Enable OCR, if you want get_resource_ocr_text to return anything
Joplin → Tools → Options → General → enable "Enable document text extraction (OCR)". Joplin needs some time to process existing attachments after you turn this on — check the ocr_status field returned by the tool (0/1 = queued, 2 = processing, 3 = done, 4 = error, see ocr_error).
Configuration
The server reads two environment variables:
| Variable | Required | Default | Description |
|---|---|---|---|
JOPLIN_TOKEN |
✅ yes | — | Your Web Clipper authorization token |
JOPLIN_BASE_URL |
no | http://127.0.0.1:41184 |
Base URL of the Joplin Web Clipper API |
Usage with an MCP client
Add this to your client's MCP config (e.g. .mcp.json for Claude Code, or the Claude Desktop config file):
{
"mcpServers": {
"joplin": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/joplin-mcp", "python", "server.py"],
"env": {
"JOPLIN_TOKEN": "<your-joplin-web-clipper-token>",
"JOPLIN_BASE_URL": "http://127.0.0.1:41184"
}
}
}
}
Running without
uv? Swapcommand/argsfor"command": "python", "args": ["/absolute/path/to/joplin-mcp/server.py"]instead.
Restart/reconnect your MCP client and the joplin tools should show up.
Example prompts once connected
- "List my Joplin notebooks."
- "Search my notes for 'react devtools'."
- "Pull up the note titled X and summarize it."
- "Download the screenshot attached to this note so I can look at it."
- "What text was OCR'd out of that PDF I scanned last week?"
Security notes
- The Web Clipper token grants full read/write access to your entire Joplin database — treat it like a password. Never commit it to a repo.
- The server only talks to
127.0.0.1by default (your local Joplin instance) — it's not designed to be exposed over a network. delete_notemoves notes to Joplin's trash (recoverable), unless you've disabled the trash in Joplin's settings.
Known limitations / roadmap
This covers the day-to-day note/notebook/attachment workflow, but doesn't (yet) wrap every corner of Joplin's Data API:
- ❌ Tags — no list/create/assign tag support
- ⚠️ Resources — no upload/delete of attachments (only read + OCR text)
- ❌ Note revision history
PRs welcome if you need one of these.
Project structure
joplin-mcp/
├── server.py # the MCP server — all tools live here
├── pyproject.toml # project metadata + dependencies
├── uv.lock # locked dependency versions (uv)
├── .python-version # pinned Python version for uv
├── .gitignore
├── LICENSE
└── README.md
License
MIT — see 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 模型以安全和受控的方式获取实时的网络信息。