Skip to main content
Glama

Obsidian MCP

Ein MCP-Server (Model Context Protocol), der KI-Assistenten (Claude, Cursor, etc.) Zugriff auf deinen Obsidian-Vault gibt. Navigiere in Ordnern, lies Notizen, erstelle, bearbeite, verschiebe, benenne sie um und lösche sie – alles aus deinem KI-Chat.

Voraussetzungen

  • Python 3.10+

  • uv (empfohlen) oder pip

  • Ein Obsidian-Vault auf deinem lokalen Rechner

Related MCP server: mcp-obsidian

Installation

# Clone the repo
git clone https://github.com/your-username/obsidian-mcp
cd obsidian-mcp

# Copy the env template and set your vault path
cp .env.example .env

Bearbeite .env und setze deinen Vault-Pfad:

OBSIDIAN_VAULT_PATH="/Users/you/Documents/MyVault"

So findest du deinen Vault-Pfad in Obsidian: Einstellungen → Über → Vault-Pfad.

Server ausführen

Entwicklung (mit MCP Inspector UI)

uv run mcp dev server.py

Dadurch wird der MCP Inspector in deinem Browser geöffnet, wo du alle Tools interaktiv testen kannst.

Produktion

uv run server.py

Verbindung zu Cursor herstellen

Füge dies zu deiner .cursor/mcp.json hinzu (oder zu den globalen MCP-Einstellungen von Cursor):

{
  "mcpServers": {
    "obsidian": {
      "command": "python",
      "args": ["/absolute/path/to/obsidian-mcp/server.py"],
      "env": {
        "OBSIDIAN_VAULT_PATH": "/path/to/your/vault"
      }
    }
  }
}

Ersetze /absolute/path/to/obsidian-mcp/server.py durch den tatsächlichen Pfad zu server.py auf deinem Rechner und /path/to/your/vault durch deinen Vault-Pfad (findest du ihn in Obsidian: Einstellungen → Über → Vault-Pfad).

Verbindung zu Claude Desktop herstellen

Füge dies zu deiner claude_desktop_config.json hinzu:

{
  "mcpServers": {
    "obsidian": {
      "command": "uv",
      "args": ["run", "/absolute/path/to/obsidian-mcp/server.py"],
      "env": {
        "OBSIDIAN_VAULT_PATH": "/path/to/your/vault"
      }
    }
  }
}

Verfügbare Tools

Tool

Beschreibung

list_folder(folder_path)

Liste Unterordner und Notizen in einem Vault-Ordner auf. Leer lassen für das Vault-Wurzelverzeichnis.

read_note(note_path)

Lies den vollständigen Inhalt einer Notiz (Pfad relativ zum Vault-Wurzelverzeichnis).

create_note(note_path, content)

Erstelle eine neue Notiz. Erstellt bei Bedarf Zwischenordner.

update_note(note_path, content)

Ersetze den vollständigen Inhalt einer vorhandenen Notiz.

delete_note(note_path)

Lösche eine Notiz aus dem Vault.

rename_note(note_path, new_name)

Benenne eine Notiz um und behalte sie im selben Ordner.

move_note(note_path, destination_path)

Verschiebe eine Notiz in einen anderen Ordner. Kann beim Verschieben auch umbenennen. Erstellt bei Bedarf Zielordner.

delete_folder(folder_path, recursive)

Lösche einen Ordner. Verwende recursive=True, um Ordner zu löschen, die Dateien enthalten.

Alle Pfade sind relativ zum Vault-Wurzelverzeichnis, z. B. "Projects/App/roadmap.md".

Lizenz

MIT

A
license - permissive license
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    Not graded
    quality
    D
    maintenance
    Provides an MCP server that allows AI assistants to interact with Obsidian vaults, enabling reading/writing notes, managing metadata, searching content, and working with daily notes.
    36
    MIT
  • F
    license
    A
    quality
    D
    maintenance
    An MCP server that enables AI assistants to interact with Obsidian vaults by providing tools for note management, full-text search, and link analysis. It supports comprehensive file operations, frontmatter manipulation, and daily note creation while ensuring security through path validation.
    19
    1
  • F
    license
    Not graded
    quality
    D
    maintenance
    A local MCP server that wraps the Obsidian CLI to give AI assistants direct access to read, edit, and manage notes within an Obsidian vault. It enables advanced operations such as frontmatter property management, context-aware searching, and the execution of internal Obsidian commands.
    2

View all related MCP servers

Related MCP Connectors

  • Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer

  • Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.

  • An MCP server that gives your AI access to the source code and docs of all public github repos

View all MCP Connectors

Latest Blog Posts

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/DavidBurckhardt/obsidian-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server