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 28 29 29 | tool | description | 30 30 |------|-------------| 31 - | `search` | search documents by query, tag, platform, date, or author | 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 | 32 34 | `get_document` | retrieve full content by AT-URI | 33 35 | `find_similar` | find semantically similar documents | 34 36 | `get_tags` | list all tags with document counts | ··· 39 41 40 42 ``` 41 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 42 47 get_document("at://...") → {title: "...", content: "full article text..."} 43 48 find_similar("at://...") → [{uri: "at://...", title: "...", snippet: "..."}] 44 49 ``` 50 + 51 + the `author` param accepts either a handle (`nate.bsky.social`) or a DID (`did:plc:xyz`). handles are resolved server-side. 45 52 46 53 ## development 47 54