get_followers
Retrieve a list of users who follow a specified handle on Bluesky Social MCP. Supports pagination and customizable result limits for efficient account analysis.
Instructions
Get users who follow an account.
Args:
ctx: MCP context
handle: Optional handle to get followers for. If None, gets the authenticated user
limit: Maximum number of results to return (1-100)
cursor: Optional pagination cursor
Returns:
List of follower accounts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | ||
handle | No | ||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Cursor"
},
"handle": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Handle"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"default": 50,
"title": "Limit"
}
},
"title": "get_followersArguments",
"type": "object"
}