Loading...
{
"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"
}
}
}
}zk_create_noteCreates a new note with a title, content, and optional tags.
Adds new content to the Zettelkasten.
zk_get_noteRetrieves a specific note by ID or title.
Read-only operation.
zk_update_noteUpdates an existing note's content or metadata.
Modifies existing content.
zk_delete_noteDeletes a note.
Removes content from the Zettelkasten.
zk_create_linkCreates links between notes.
Adds relationships between notes.
zk_remove_linkRemoves links between notes.
Removes relationships between notes.
zk_search_notesSearches for notes by content, tags, or links.
Read-only operation.
zk_get_linked_notesFinds notes linked to a specific note.
Read-only operation.
zk_get_all_tagsLists all tags in the system.
Read-only operation.
zk_find_similar_notesFinds notes similar to a given note.
Read-only operation.
zk_find_central_notesFinds notes with the most connections.
Read-only operation.
zk_find_orphaned_notesFinds notes with no connections.
Read-only operation.
zk_list_notes_by_dateLists notes by creation/update date.
Read-only operation.
zk_rebuild_indexRebuilds the database index from Markdown files.
Potentially overwrites database content.
The Zettelkasten MCP server offers a balance between functionality and risk. It's relatively safe for read-only operations and knowledge exploration. However, write operations should be performed with caution, ensuring proper backups and understanding of the potential impact on the knowledge base.