resolve_handle
Pack: bluesky · Endpoint: https://gateway.pipeworx.io/bluesky/mcp
Convert a Bluesky handle to its DID (decentralized identifier). Returns the DID for programmatic account lookups.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
handle | string | yes | Bluesky handle to resolve |
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":"resolve_handle","arguments":{"handle":"alice.bsky.social"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('resolve_handle', {
"handle": "alice.bsky.social"
});
More examples
{
"handle": "jack.bsky.social"
}
Response shape
Always returns: handle, did
| Field | Type | Description |
|---|---|---|
handle | string | The Bluesky handle |
did | string | The decentralized identifier for the handle |
Full JSON Schema
{
"type": "object",
"properties": {
"handle": {
"type": "string",
"description": "The Bluesky handle"
},
"did": {
"type": "string",
"description": "The decentralized identifier for the handle"
}
},
"required": [
"handle",
"did"
]
}
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.