MCP Server for Semantic Search in Obsidian Vaults

A developer has created an MCP server that provides semantic search capabilities for Obsidian vaults, addressing the problem of agents missing relevant documents due to keyword matching limitations.
Key Features
- Indexes Obsidian vaults into Qdrant vector database with local embeddings
- Uses BAAI/bge-small-en-v1.5 embedding model (384 dimensions, no API keys required)
- Chunks markdown by headings without breaking tables or code blocks
- Auto-starts Qdrant via Docker if not already running
- Supports filtering by project, document type, or frontmatter tags
- Implements incremental indexing - only re-embeds changed files
- Returns only relevant chunks rather than entire files
- Maintains fast performance even with large vaults containing hundreds of files
Compatibility and Availability
The server works with Claude Code, Cursor, Windsurf, or any MCP-compatible agent. It's available on GitHub and PyPI:
- GitHub: https://github.com/Marco-O94/obsidian-qdrant-search
- PyPI: https://pypi.org/project/obsidian-qdrant-search/
The developer is seeking feedback on chunking strategies, embedding model choices, and bug reports, noting that edge cases may not yet be covered.
📖 Read the full source: r/ClaudeAI
👀 See Also

OpenClaw memory loss fix using Mem0 plugin
OpenClaw agents experience memory loss due to context compaction rewriting files like MEMORY.md. The Mem0 plugin solves this by moving memory outside the context window with auto-recall and auto-capture features.

Claude Desktop App Adds Projects Feature to Cowork Interface
The Claude desktop app now includes a Projects feature in Cowork, allowing users to organize tasks and context in dedicated workspaces. Files and instructions remain on the user's local computer, with options to import existing projects or start new ones.

free-claude-code adds GLM-5 support via NVIDIA NIM, expands to OpenRouter and Discord
free-claude-code now supports GLM-5 through NVIDIA NIM's free tier (40 requests/min) and adds OpenRouter integration, Discord bot support, and LMStudio local provider compatibility. The tool converts Claude Code's Anthropic API requests to work with alternative model backends.

Benchmark Results: Claude Agent Swarm with Memory System Shows 30-43% Token Cost Savings
A developer tested a 6-agent Claude swarm on a 40-point coding task with and without a custom memory system called Stompy. Results show Sonnet 4.6 with memory achieved perfect scores at $3.98 vs $7.04 without, while Haiku 4.5 failed completely without memory but scored 39/40 with it.