get_profile
Retrieve user profile information using a handle or the authenticated user's data. Returns detailed profile data for Bluesky Social MCP users.
Instructions
Get a user profile.
Args:
ctx: MCP context
handle: Optional handle to get profile for. If None, gets the authenticated user
Returns:
Profile data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
handle | No |
Input Schema (JSON Schema)
{
"properties": {
"handle": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Handle"
}
},
"title": "get_profileArguments",
"type": "object"
}