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"
]
}
}
}
}