get-profile
Retrieve a Bluesky user's profile by entering their handle, enabling access to key information via the Bluesky MCP Server for direct integration with AI assistants.
Instructions
Get a user's profile from Bluesky
Input Schema
Name | Required | Description | Default |
---|---|---|---|
handle | Yes | The handle of the user (e.g., alice.bsky.social) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"handle": {
"description": "The handle of the user (e.g., alice.bsky.social)",
"type": "string"
}
},
"required": [
"handle"
],
"type": "object"
}