resolve_handle
Convert a user handle to its corresponding decentralized identifier (DID) using the Bluesky Social MCP server. Retrieve DID information for accurate user identification.
Instructions
Resolve a handle to a DID.
Args:
ctx: MCP context
handle: User handle to resolve (e.g. "user.bsky.social")
Returns:
Resolved DID information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
handle | Yes |
Input Schema (JSON Schema)
{
"properties": {
"handle": {
"title": "Handle",
"type": "string"
}
},
"required": [
"handle"
],
"title": "resolve_handleArguments",
"type": "object"
}