Joplin MCP Server

Joplin MCP Server

Enables AI assistants to manage Joplin Notes through the Web Clipper API, supporting note creation, updates, search, notebook organization, and tag management.

Category
Visit Server

README

Joplin MCP Server

MCP (Model Context Protocol) server for Joplin Notes integration, allowing AI assistants to manage your notes, notebooks, and tags.

Features

  • Notes: List, create, update, search, and delete notes
  • Notebooks: List and create notebooks (folders)
  • Tags: List tags and tag notes
  • Search: Full Joplin search syntax support
  • To-dos: Create and manage to-do items

Prerequisites

  • Joplin desktop app must be running
  • Web Clipper service must be enabled

Setup

1. Enable Web Clipper in Joplin

  1. Open Joplin desktop
  2. Go to ToolsOptionsWeb Clipper
  3. Click Enable Web Clipper Service
  4. Copy the Authorization token

2. Install Dependencies

cd repos/joplin-mcp
uv venv .venv
source .venv/bin/activate
uv pip install -r requirements.txt

3. Configure Claude Code

Add to your Claude Code MCP settings (~/.claude/mcp_settings.json):

{
  "mcpServers": {
    "joplin": {
      "command": "/home/samuel/repos/joplin-mcp/.venv/bin/python",
      "args": ["/home/samuel/repos/joplin-mcp/joplin_mcp.py"],
      "env": {
        "JOPLIN_TOKEN": "your-api-token-here"
      }
    }
  }
}

Available Tools

Tool Description
joplin_list_notebooks List all notebooks
joplin_create_notebook Create a new notebook
joplin_list_notes List notes (filterable by notebook)
joplin_get_note Get full note content
joplin_create_note Create a new note
joplin_update_note Update existing note
joplin_delete_note Delete a note
joplin_search_notes Search notes
joplin_list_tags List all tags
joplin_tag_note Add tag to note

Usage Examples

Once configured, you can ask Claude:

  • "Show me my Joplin notebooks"
  • "List my recent notes"
  • "Create a note called 'Meeting Notes' in my Work notebook"
  • "Search for notes about 'project plan'"
  • "What notes are tagged with 'important'?"

Search Syntax

The joplin_search_notes tool supports Joplin's query syntax:

  • title:meeting - Search in title
  • body:action items - Search in body
  • tag:work - Filter by tag
  • notebook:Projects - Filter by notebook
  • type:todo - Only to-dos
  • iscompleted:0 - Incomplete to-dos
  • created:20240101 - Created after date
  • updated:20240101 - Updated after date

Combine: tag:work type:todo iscompleted:0 finds incomplete work todos.

Note

Joplin desktop must be running for the MCP server to work. The API connects to localhost:41184 (the Web Clipper service).

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured