Install
openclaw skills install obsidian-searchSemantic search for Obsidian notes using AI vector embeddings. Find notes by meaning, discover connections, filter by tags/dates/folders, and retrieve full content. Use when the user says 'search my notes', 'find in Obsidian', 'what did I write about', 'related notes', 'Obsidian search', or wants AI-powered knowledge retrieval from their Obsidian vault.
openclaw skills install obsidian-searchAI-powered semantic search for your Obsidian notes — find notes by meaning, not just keywords. Powered by Obvec.
https://rag.10xboost.org/mcp?token=xxxxx) contains an embedded authentication token. Treat it like a password — do not share it publicly.| Tool | Description |
|---|---|
search_notes | Semantic search — find notes by meaning with similarity scoring, tag/date filters |
list_notes | Browse notes by folder, tags, date range, with sorting options |
get_note | Retrieve full content of a specific note by path or search term |
analyze_connections | Discover related notes through AI-powered similarity analysis |
| User Request | Tool to Use |
|---|---|
| "Find notes about X" | search_notes |
| "What did I write about X?" | search_notes |
| "Show my recent notes" | list_notes with sortBy: "modifiedAt" |
| "Notes in folder X" | list_notes with pathPrefix |
| "Open note X" | get_note |
| "What's related to X?" | analyze_connections |
search_notes(
query: "machine learning project ideas",
limit: 10,
minScore: 0.7
)
search_notes(
query: "meeting notes",
tags: ["work", "project-x"],
sortBy: "modifiedAt",
limit: 20
)
get_note(path: "Projects/AI Research.md")
or search by term:
get_note(searchTerm: "quarterly review")
analyze_connections(
reference: "Projects/AI Research.md",
limit: 10,
minScore: 0.6
)
Returns notes most semantically similar to the reference — great for finding related ideas, building knowledge graphs, or discovering forgotten notes.
| Error | Solution |
|---|---|
| No results found | Try a broader query or lower minScore |
| Note not found | Use list_notes to find the correct path |
| Token expired | Get a new MCP link from obsidian.10xboost.org Settings (tokens last 30 days) |