search for standard sites pub-search.waow.tech
search zig blog atproto

docs: expand MCP README with author filtering examples

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+8 -1
+8 -1
mcp/README.md
··· 28 29 | tool | description | 30 |------|-------------| 31 - | `search` | search documents by query, tag, platform, date, or author | 32 | `get_document` | retrieve full content by AT-URI | 33 | `find_similar` | find semantically similar documents | 34 | `get_tags` | list all tags with document counts | ··· 39 40 ``` 41 search("space station") → [{uri: "at://...", title: "...", snippet: "...", url: "..."}] 42 get_document("at://...") → {title: "...", content: "full article text..."} 43 find_similar("at://...") → [{uri: "at://...", title: "...", snippet: "..."}] 44 ``` 45 46 ## development 47
··· 28 29 | tool | description | 30 |------|-------------| 31 + | `search` | keyword search by query, tag, platform, date, or author | 32 + | `search_semantic` | semantic search by meaning, filterable by platform or author | 33 + | `search_hybrid` | combined keyword + semantic search with author/platform filtering | 34 | `get_document` | retrieve full content by AT-URI | 35 | `find_similar` | find semantically similar documents | 36 | `get_tags` | list all tags with document counts | ··· 41 42 ``` 43 search("space station") → [{uri: "at://...", title: "...", snippet: "...", url: "..."}] 44 + search("gated content", author="ngerakines.me") → results from that author only 45 + search("", author="zat.dev") → browse all docs by author 46 + search_semantic("building a relay", author="zat.dev") → semantic search scoped to author 47 get_document("at://...") → {title: "...", content: "full article text..."} 48 find_similar("at://...") → [{uri: "at://...", title: "...", snippet: "..."}] 49 ``` 50 + 51 + the `author` param accepts either a handle (`nate.bsky.social`) or a DID (`did:plc:xyz`). handles are resolved server-side. 52 53 ## development 54