Obsidian Knowledge-Management MCP (Model Context Protocol) server that enables AI agents and development tools to interact with an Obsidian vault.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"obsidian-mcp-server": {
"command": "go",
"args": [
"run",
"github.com/tylern91/obsidian-mcp-server@latest"
]
}
}
}
Run in terminal:
claude mcp add obsidian-mcp-server go run github.com/tylern91/obsidian-mcp-server@latest
Add to .cursor/mcp.json:
{
"mcpServers": {
"obsidian-mcp-server": {
"command": "go",
"args": [
"run",
"github.com/tylern91/obsidian-mcp-server@latest"
]
}
}
}