Home/Servers/Obsidian MCP Server

Obsidian MCP Server

by Markus Pfundstein ยท โญ 678 stars ยท updated 3 months ago

Read, write, and search your Obsidian vault. Create notes, update content, search across your vault, and manage your personal knowledge base through AI.

76
Good

Quality Score Breakdown

maintenance77/100
community74/100
documentation77/100
compatibility76/100

Use Cases

  • โœ“create notes
  • โœ“search vault
  • โœ“update content
  • โœ“personal knowledge management

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "obsidian": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-obsidian",
        "--vault-path",
        "/path/to/your/vault"
      ]
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "obsidian": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-obsidian",
        "--vault-path",
        "/path/to/your/vault"
      ]
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "obsidian": {
        "command": "npx",
        "args": [
          "-y",
          "mcp-obsidian",
          "--vault-path",
          "/path/to/your/vault"
        ]
      }
    }
  }
}
โ† Back to all servers