├── .gitignore ├── LICENSE ├── README.md ├── openapi.yaml ├── pyproject.toml ├── src └── mcp_obsidian │ ├── __init__.py │ ├── obsidian.py │ ├── server.py │ └── tools.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusPfundstein/mcp-obsidian/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusPfundstein/mcp-obsidian/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusPfundstein/mcp-obsidian/HEAD/README.md -------------------------------------------------------------------------------- /openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusPfundstein/mcp-obsidian/HEAD/openapi.yaml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusPfundstein/mcp-obsidian/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/mcp_obsidian/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusPfundstein/mcp-obsidian/HEAD/src/mcp_obsidian/__init__.py -------------------------------------------------------------------------------- /src/mcp_obsidian/obsidian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusPfundstein/mcp-obsidian/HEAD/src/mcp_obsidian/obsidian.py -------------------------------------------------------------------------------- /src/mcp_obsidian/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusPfundstein/mcp-obsidian/HEAD/src/mcp_obsidian/server.py -------------------------------------------------------------------------------- /src/mcp_obsidian/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusPfundstein/mcp-obsidian/HEAD/src/mcp_obsidian/tools.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusPfundstein/mcp-obsidian/HEAD/uv.lock --------------------------------------------------------------------------------