bluesky_get_follows
Retrieve a list of accounts a user follows on BlueSky, with pagination support and a customizable limit (default 50, max 100), using the BlueSky MCP Server API.
Instructions
Get a list of accounts the user follows
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | Pagination cursor for next page of results | |
| limit | No | Maximum number of follows to return (default 50, max 100) |
Implementation Reference
- src/bluesky_mcp/server.py:222-228 (handler)Handler logic that fetches the authenticated user's follows from Bluesky API using graph.get_follows endpoint.elif name == "bluesky_get_follows": limit = arguments.get("limit", 50) cursor = arguments.get("cursor") response = await asyncio.to_thread( bluesky.client.app.bsky.graph.get_follows, {'actor': IDENTIFIER, 'limit': limit, 'cursor': cursor} )
- src/bluesky_mcp/server.py:88-105 (registration)Tool registration in the list_tools handler, defining the tool name, description, and input schema.types.Tool( name="bluesky_get_follows", description="Get a list of accounts the user follows", inputSchema={ "type": "object", "properties": { "limit": { "type": "integer", "description": "Maximum number of follows to return (default 50, max 100)", "default": 50, }, "cursor": { "type": "string", "description": "Pagination cursor for next page of results", }, }, }, ),