masaki39/obsidian-mcp
3.2
If you are the rightful owner of obsidian-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
The Obsidian MCP server proxies the active Obsidian note using the Local REST API, making it accessible as a tool over stdio.
Tools
1
Resources
0
Prompts
0
obsidian-mcp
Simple MCP server that provides the active Obsidian file (path and content) to your LLM via the Obsidian Local REST API.
Prerequisites
Configuration
- Install the community plugin Obsidian Local REST API plugin in Obsidian.
- Open the plugin settings, enable HTTP, and copy the API key.
MCP client configuration
{
"mcpServers": {
"obsidian-mcp": {
"command": "npx",
"args": ["-y", "@masaki39/obsidian-mcp@latest"],
"env": {
"OBSIDIAN_API_KEY": "your_api_key_here",
"OBSIDIAN_VAULT_PATH": "/absolute/path/to/your/vault"
}
}
}
}
OBSIDIAN_VAULT_PATH is optional; omit it if you prefer the relative paths returned by the plugin.