get-follows
Retrieve a detailed list of users followed by a specific person on Bluesky, with options to set a custom limit (1-500). Supports handles or DIDs for accurate results.
Instructions
Get a list of users that a person follows
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of follows to fetch (1-500) | |
user | Yes | The handle or DID of the user (e.g., alice.bsky.social) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 500,
"description": "Maximum number of follows to fetch (1-500)",
"maximum": 500,
"minimum": 1,
"type": "number"
},
"user": {
"description": "The handle or DID of the user (e.g., alice.bsky.social)",
"type": "string"
}
},
"required": [
"user"
],
"type": "object"
}