Obsidian Index MCP server
@tcsavage
关于 Obsidian Index MCP server
MCP server providing sementic search over Obsidian vaults
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"mcp-obsidian-index": {
"command": "uv",
"args": [
"run",
"obsidian-index",
"mcp",
"--vault",
"<VAULT_PATH>",
"--database",
"<DATABASE_PATH>",
"--reindex",
"--watch"
]
}
}
}工具
1Performs semantic search over indexed notes
概览
What is Obsidian Index MCP server?
Obsidian Index MCP server is an MCP server that provides semantic search over an Obsidian vault and exposes recently modified notes as resources. It is designed for users of Obsidian who want to integrate semantic search and note retrieval into MCP-compatible tools.
How to use Obsidian Index MCP server?
Install via PyPI using uv run obsidian-index or uvx obsidian-index. Launch the server with --vault <VAULT_PATH>, --database <DATABASE_PATH>, --reindex, and --watch flags. The server exposes one tool (search-notes) and the recent notes as resources.
Key features of Obsidian Index MCP server
- Semantic search over indexed Obsidian vault notes.
- Exposes recently modified notes as resources.
- Notes addressed by
obsidian://URL scheme withtext/markdownMIME type. - Supports multiple vaults via repeated
--vaultflag. - Watches vault changes and updates index automatically with
--watch. - Reindexes all notes with
--reindexflag.
Use cases of Obsidian Index MCP server
- Quickly find relevant notes in a large Obsidian vault using semantic search.
- Integrate Obsidian note retrieval into AI assistant contexts (e.g., Claude Desktop).
- Automatically index and search notes across multiple vaults.
- Provide recent note context to MCP-compatible clients for enhanced responses.
FAQ from Obsidian Index MCP server
What kind of search does it perform?
It performs semantic search over indexed notes in the Obsidian vault.
How do I run the server?
Use uv run obsidian-index mcp --vault <VAULT_PATH> --database <DATABASE_PATH> --reindex --watch in your terminal.
What are the configuration options for Claude Desktop?
Add a JSON entry to claude_desktop_config.json using the uv or uvx command with the appropriate arguments (see Quickstart section in the README).
Are there any dependencies?
The server requires Python (with the package installed via uv) and the Obsidian Index package itself. No additional runtime dependencies are listed.
How can I debug the server?
Use the MCP Inspector: run npx @modelcontextprotocol/inspector uv --directory <PATH_TO_PROJECT> run obsidian-index.
记忆与知识 分类下的更多 MCP 服务器
Mcp Knowledge Graph
shanehollomanMCP server enabling persistent memory for Claude through a local knowledge graph - fork focused on local development
Jupyter Notebook MCP Server (for Cursor)
jbenoModel Context Protocol (MCP) server designed to allow AI agents within Cursor to interact with Jupyter Notebook (.ipynb) files
mcp-local-rag
nkapila6"primitive" RAG-like web search model context protocol (MCP) server that runs locally. ✨ no APIs ✨
Ultimate Google Docs & Drive MCP Server
a-bonusThe Ultimate Google Docs, Sheets, Drive, Gmail, & Google Calendar MCP Server. This MCP (primarily for use in Claude Desktop) gains full access to your google suite and lets claude do its thing.
Notion MCP Server
makenotionOfficial Notion MCP Server
评论