search_starter_packs
Search for Bluesky starter packs by keyword and retrieve pack details including name, description, creator, member count, and joined counts.
Instructions
Search for Bluesky starter packs by keyword (app.bsky.graph.searchStarterPacks). Returns a paginated list of matching packs with name, description, creator, member count, and joined counts. Works without authentication. Use get_starter_pack to fetch full details (member sample, feeds, list info) for a specific pack. Subject to per-tool rate limiting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q | Yes | Search query string for finding starter packs (e.g. "typescript developers"). Plain keywords work; the API recommends Lucene query syntax for advanced queries. | |
| limit | No | Max starter packs per page (1–100, default 25). | |
| cursor | No | Opaque pagination cursor from the previous response cursor field; omit for the first page. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| success | Yes | Whether the search succeeded. | |
| query | Yes | The search query that was executed. | |
| starterPacks | Yes | The matched starter packs for this page. | |
| cursor | No | Opaque cursor for the next page; absent when there are no more results. | |
| hasMore | Yes | Whether additional pages of results are available. |