get_follows

Pack: bluesky · Endpoint: https://gateway.pipeworx.io/bluesky/mcp

Get accounts a Bluesky user follows by handle. Returns followed profiles with handles, display names, bios, and descriptions.

Parameters

NameTypeRequiredDescription
handlestringyesBluesky handle
limitnumbernoNumber of follows (1-100, default 50)

Example call

Arguments

{
  "handle": "alice.bsky.social"
}

curl

curl -X POST https://gateway.pipeworx.io/bluesky/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_follows","arguments":{"handle":"alice.bsky.social"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_follows', {
  "handle": "alice.bsky.social"
});

More examples

{
  "handle": "jack.bsky.social",
  "limit": 75
}

Response shape

Always returns: follows

FieldTypeDescription
followsarrayList of followed profiles
Full JSON Schema
{
  "type": "object",
  "properties": {
    "follows": {
      "type": "array",
      "description": "List of followed profiles",
      "items": {
        "type": "object",
        "properties": {
          "did": {
            "type": "string",
            "description": "Decentralized identifier"
          },
          "handle": {
            "type": "string",
            "description": "Followed account's handle"
          },
          "displayName": {
            "type": "string",
            "description": "Followed account's display name"
          },
          "description": {
            "type": "string",
            "description": "Followed account's bio"
          },
          "followers": {
            "type": "number",
            "description": "Followed account's follower count"
          },
          "following": {
            "type": "number",
            "description": "Followed account's following count"
          },
          "posts": {
            "type": "number",
            "description": "Followed account's post count"
          }
        },
        "required": [
          "did",
          "handle",
          "displayName",
          "description",
          "followers",
          "following",
          "posts"
        ]
      }
    }
  },
  "required": [
    "follows"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "bluesky": {
      "url": "https://gateway.pipeworx.io/bluesky/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026