Zettelkasten MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Zettelkasten MCP Servercreate a permanent note on atomicity and link to my connectivity note"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Zettelkasten MCP Server
A Model Context Protocol (MCP) server that implements the Zettelkasten knowledge management methodology, allowing you to create, link, explore and synthesize atomic notes through Claude and other MCP-compatible clients.
What is Zettelkasten?
The Zettelkasten method is a knowledge management system developed by German sociologist Niklas Luhmann, who used it to produce over 70 books and hundreds of articles. It consists of three core principles:
Atomicity: Each note contains exactly one idea, making it a discrete unit of knowledge
Connectivity: Notes are linked together to create a network of knowledge, with meaningful relationships between ideas
Emergence: As the network grows, new patterns and insights emerge that weren't obvious when the individual notes were created
What makes the Zettelkasten approach powerful is how it enables exploration in multiple ways:
Vertical exploration: dive deeper into specific topics by following connections within a subject area.
Horizontal exploration: discover unexpected relationships between different fields by traversing links that cross domains.
This structure invites serendipitous discoveries as you follow trails of thought from note to note, all while keeping each piece of information easily accessible through its unique identifier. Luhmann called his system his "second brain" or "communication partner" - this digital implementation aims to provide similar benefits through modern technology.
Related MCP server: mcp-zettel
Features
Create atomic notes with unique timestamp-based IDs
Link notes bidirectionally to build a knowledge graph
Tag notes for categorical organization
Search notes by content, tags, or links
Use markdown format for human readability and editing
Integrate with Claude through MCP for AI-assisted knowledge management
Dual storage architecture (see below)
Synchronous operation model for simplified architecture
Examples
Knowledge creation: A small Zettelkasten knowledge network about the Zettelkasten method itself
Note Types
The Zettelkasten MCP server supports different types of notes:
Type | Handle | Description |
Fleeting notes |
| Quick, temporary notes for capturing ideas |
Literature notes |
| Notes from reading material |
Permanent notes |
| Well-formulated, evergreen notes |
Structure notes |
| Index or outline notes that organize other notes |
Hub notes |
| Entry points to the Zettelkasten on key topics |
Link Types
The Zettelkasten MCP server uses a comprehensive semantic linking system that creates meaningful connections between notes. Each link type represents a specific relationship, allowing for a rich, multi-dimensional knowledge graph.
Primary Link Type | Inverse Link Type | Relationship Description |
|
| Simple reference to related information (symmetric relationship) |
|
| One note builds upon or develops concepts from another |
|
| One note clarifies or improves upon another |
|
| One note presents opposing views to another |
|
| One note poses questions about another |
|
| One note provides evidence for another |
|
| Generic relationship (symmetric relationship) |
Prompting
To ensure maximum effectiveness, we recommend using a system prompt ("project instructions"), project knowledge, and an appropriate chat prompt when asking the LLM to process information, or explore or synthesize your Zettelkasten notes. The docs directory in this repository contains the necessary files to get you started:
System prompts
Pick one:
Project knowledge
For end users:
(more info relevant to your project)
Chat Prompts
Project knowledge (dev)
For developers and contributors:
NB: Optionally include the source code with a tool like repomix.
Storage Architecture
This system uses a dual storage approach:
Markdown Files: All notes are stored as human-readable Markdown files with YAML frontmatter for metadata. These files are the source of truth and can be:
Edited directly in any text editor
Placed under version control (Git, etc.)
Backed up using standard file backup procedures
Shared or transferred like any other text files
SQLite Database: Functions as an indexing layer that:
Facilitates efficient querying and search operations
Enables Claude to quickly traverse the knowledge graph
Maintains relationship information for faster link traversal
Is automatically rebuilt from Markdown files when needed
If you edit Markdown files directly outside the system, you'll need to run the zk_rebuild_index tool to update the database. The database itself can be deleted at any time - it will be regenerated from your Markdown files.
Installation
# Clone the repository
git clone https://github.com/entanglr/zettelkasten-mcp.git
cd zettelkasten-mcp
# Create a virtual environment with uv
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Install dependencies
uv add "mcp[cli]"
# Install dev dependencies
uv sync --all-extrasConfiguration
Create a .env file in the project root by copying the example:
cp .env.example .envThen edit the file to configure your connection parameters.
Usage
Starting the Server
python -m zettelkasten_mcp.mainOr with explicit configuration:
python -m zettelkasten_mcp.main --notes-dir ./data/notes --database-path ./data/db/zettelkasten.dbConnecting to Claude Desktop
Add the following configuration to your Claude Desktop:
{
"mcpServers": {
"zettelkasten": {
"command": "/absolute/path/to/zettelkasten-mcp/.venv/bin/python",
"args": [
"-m",
"zettelkasten_mcp.main"
],
"env": {
"ZETTELKASTEN_NOTES_DIR": "/absolute/path/to/zettelkasten-mcp/data/notes",
"ZETTELKASTEN_DATABASE_PATH": "/absolute/path/to/zettelkasten-mcp/data/db/zettelkasten.db",
"ZETTELKASTEN_LOG_LEVEL": "INFO"
}
}
}
}Available MCP Tools
All tools have been prefixed with zk_ for better organization:
Tool | Description |
| Create a new note with a title, content, and optional tags |
| Retrieve a specific note by ID or title |
| Update an existing note's content or metadata |
| Delete a note |
| Create links between notes |
| Remove links between notes |
| Search for notes by content, tags, or links |
| Find notes linked to a specific note |
| List all tags in the system |
| Find notes similar to a given note |
| Find notes with the most connections |
| Find notes with no connections |
| List notes by creation/update date |
| Rebuild the database index from Markdown files |
Project Structure
zettelkasten-mcp/
├── src/
│ └── zettelkasten_mcp/
│ ├── models/ # Data models
│ ├── storage/ # Storage layer
│ ├── services/ # Business logic
│ └── server/ # MCP server implementation
├── data/
│ ├── notes/ # Note storage (Markdown files)
│ └── db/ # Database for indexing
├── tests/ # Test suite
├── .env.example # Environment variable template
└── README.mdTests
Comprehensive test suite for Zettelkasten MCP covering all layers of the application from models to the MCP server implementation.
How to Run the Tests
From the project root directory, run:
Using pytest directly
python -m pytest -v tests/Using UV
uv run pytest -v tests/With coverage report
uv run pytest --cov=zettelkasten_mcp --cov-report=term-missing tests/Running a specific test file
uv run pytest -v tests/test_models.pyRunning a specific test class
uv run pytest -v tests/test_models.py::TestNoteModelRunning a specific test function
uv run pytest -v tests/test_models.py::TestNoteModel::test_note_validationTests Directory Structure
tests/
├── conftest.py - Common fixtures for all tests
├── test_integration.py - Integration tests for the entire system
├── test_mcp_server.py - Tests for MCP server tools
├── test_models.py - Tests for data models
├── test_note_repository.py - Tests for note repository
├── test_search_service.py - Tests for search service
├── test_semantic_links.py - Tests for semantic linking
└── test_zettel_service.py - Tests for zettel serviceImportant Notice
⚠️ USE AT YOUR OWN RISK: This software is experimental and provided as-is without warranty of any kind. While efforts have been made to ensure data integrity, it may contain bugs that could potentially lead to data loss or corruption. Always back up your notes regularly and use caution when testing with important information.
Credit Where Credit's Due
This MCP server was crafted with the assistance of Claude, who helped organize the atomic thoughts of this project into a coherent knowledge graph. Much like a good Zettelkasten system, Claude connected the dots between ideas that might otherwise have remained isolated. Unlike Luhmann's paper-based system, however, Claude didn't require 90,000 index cards to be effective.
License
MIT License
This server cannot be installed
Maintenance
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
- AlicenseAqualityDmaintenanceImplements the Zettelkasten knowledge management methodology, allowing you to create, link, explore and synthesize atomic notes through Claude and other MCP-compatible clients.146MIT
- Alicense-qualityDmaintenanceAn MCP server that provides Claude and other MCP clients with persistent memory through a Zettelkasten knowledge base of interconnected markdown notes. It enables LLMs to create, search, link, and reference atomic notes across sessions without requiring manual copy-pasting.MIT
- Alicense-qualityCmaintenanceMCP server for AI agents to read, write, and organize notes in a local-first, human-in-the-loop note-taking app.11MIT
- AlicenseAqualityAmaintenanceAn MCP server that turns any compatible AI agent into a Zettelkasten partner for creating atomic notes, forming semantic links, detecting clusters, and synthesizing insights from your existing knowledge.191MIT
Related MCP Connectors
Search, read, and write your Apple Notes from ChatGPT/Claude via a local Mac agent + MCP relay.
Read and write your Fresh Jots notes from Claude, Cursor, and any MCP client.
Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.
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/mikeysrecipes/zettelkasten-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server