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
| Name | Type | Required | Description |
|---|---|---|---|
handle | string | yes | Bluesky 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
| Field | Type | Description |
|---|---|---|
did | string | Decentralized identifier for the user |
handle | string | Bluesky handle |
displayName | string | User’s display name |
description | string | User’s bio/description |
followers | number | Number of followers |
following | number | Number of accounts user follows |
posts | number | Number 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.