get-followers
Retrieve a list of followers for a specific Bluesky user by providing their handle or DID, with an adjustable limit of up to 500 followers.
Instructions
Get a list of users that follow a person
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of followers 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 followers 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"
}