Skip to main content
Glama
berlinbra

BlueSky MCP Server

bluesky_get_followers

Retrieve a list of accounts following a user on BlueSky, with pagination support to manage large follower counts.

Instructions

Get a list of accounts following the user

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of followers to return (default 50, max 100)
cursorNoPagination cursor for next page of results

Implementation Reference

  • Handler implementation for bluesky_get_followers tool: calls the Bluesky API to get followers of the authenticated user with optional limit and cursor.
    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}
        )
  • Registration of the bluesky_get_followers tool in the list_tools handler, including description and input schema.
    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",
                },
            },
        },
    ),
  • Input schema definition for the bluesky_get_followers tool.
    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",
            },
        },
    },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/berlinbra/BlueSky-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server