find_similar_users
Find users similar to a given account by analyzing shared follow-graph connections and follower/following-ratio similarity. Discover structurally related accounts without keyword search.
Instructions
Find users similar to a given user based on shared follow-graph connections (second-degree follows and accounts that follow the base user) and follower/following-ratio similarity. Content-topic similarity is NOT analyzed. Works without authentication; richer with auth. Use this instead of search_actors when you want accounts structurally similar to a known user rather than keyword matches. Subject to per-tool rate limiting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| actor | Yes | Handle (e.g. alice.bsky.social) or DID of the target account to find similar users for. | |
| maxResults | No | Maximum number of similar users to return (1–50, default 20). | |
| minFollowerCount | No | Minimum follower count a candidate must have to be included in results (default 0, meaning no minimum). | |
| includeMetrics | No | When true, includes a metrics object on each result with followsBaseUser and followerRatioSimilarity values (default true). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| success | Yes | Whether the operation completed successfully. | |
| similarUsers | Yes | List of similar users sorted by descending similarity score. | |
| baseUser | Yes | Profile summary of the queried base user. | |
| insights | Yes | Summary observations about the results (e.g. average similarity score, average follower count). |