obsidian-mcp-python
If you are the rightful owner of obsidian-mcp-python and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
Obsidian-MCP-Python is a demo project designed to help users understand and set up a Model Context Protocol (MCP) service.
obsidian-mcp-python
notice
Actually, this is a small demo project designed to help you understand MCP. It enables you to quickly get to know and set up a real MCP service.
- If you're a developer, you can look at the Tutorial.md
- If you're an ordinary user who just wants to have a try, please refer to the "Usage" section.
Usage
- clone this repo to your local pc
- install uv tool in your local pc
- copy bellow json config into you MCP Client (Cursor/Windsurf/Claude Desktop)
{
"mcpServers": {
"obsidian-mcp-python": {
"command": "uv",
"args": [
"--directory",
"/path/of/your/project/file/obsidian-mcp-python",
"run",
"main.py"
],
"env": {
"OBSIDIAN_PATH": "/path/of/your/obsidian/vault"
}
}
}
}