bluesky_get_followers
Retrieve a list of users following a specific account on BlueSky, with options to set a limit or paginate using a cursor for extended results.
Instructions
Get a list of accounts following the user
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | Pagination cursor for next page of results | |
| limit | No | Maximum number of followers to return (default 50, max 100) |
Implementation Reference
- src/bluesky_mcp/server.py:230-236 (handler)Handler for the 'bluesky_get_followers' tool. Retrieves followers for the authenticated user using the Bluesky API, supporting limit and cursor parameters.elif name == "bluesky_get_followers": limit = arguments.get("limit", 50) cursor = arguments.get("cursor") response = await asyncio.to_thread( bluesky.client.app.bsky.graph.get_followers, {'actor': IDENTIFIER, 'limit': limit, 'cursor': cursor} )
- src/bluesky_mcp/server.py:106-123 (registration)Tool registration including name, description, and input schema for 'bluesky_get_followers'.types.Tool( name="bluesky_get_followers", description="Get a list of accounts following the user", inputSchema={ "type": "object", "properties": { "limit": { "type": "integer", "description": "Maximum number of followers to return (default 50, max 100)", "default": 50, }, "cursor": { "type": "string", "description": "Pagination cursor for next page of results", }, }, }, ),
- src/bluesky_mcp/server.py:109-122 (schema)Input schema definition for the 'bluesky_get_followers' tool, defining optional limit and cursor parameters.inputSchema={ "type": "object", "properties": { "limit": { "type": "integer", "description": "Maximum number of followers to return (default 50, max 100)", "default": 50, }, "cursor": { "type": "string", "description": "Pagination cursor for next page of results", }, }, },