get_profile

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

Look up a Bluesky user’s profile by handle (e.g., “alice.bsky.social”). Returns display name, bio, follower/following counts, avatar, and verification status.

Parameters

NameTypeRequiredDescription
handlestringyesBluesky handle (e.g., alice.bsky.social)

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_profile","arguments":{"handle":"alice.bsky.social"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

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

Response shape

Always returns: did, handle, displayName, description, followers, following, posts

FieldTypeDescription
didstringDecentralized identifier for the user
handlestringBluesky handle
displayNamestringUser’s display name
descriptionstringUser’s bio/description
followersnumberNumber of followers
followingnumberNumber of accounts user follows
postsnumberNumber of posts by user
Full JSON Schema
{
  "type": "object",
  "properties": {
    "did": {
      "type": "string",
      "description": "Decentralized identifier for the user"
    },
    "handle": {
      "type": "string",
      "description": "Bluesky handle"
    },
    "displayName": {
      "type": "string",
      "description": "User's display name"
    },
    "description": {
      "type": "string",
      "description": "User's bio/description"
    },
    "followers": {
      "type": "number",
      "description": "Number of followers"
    },
    "following": {
      "type": "number",
      "description": "Number of accounts user follows"
    },
    "posts": {
      "type": "number",
      "description": "Number of posts by user"
    }
  },
  "required": [
    "did",
    "handle",
    "displayName",
    "description",
    "followers",
    "following",
    "posts"
  ]
}

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