follow_user
Enable users to follow another account on Bluesky Social by specifying the target handle. Returns the status of the follow action.
Instructions
Follow a user.
Args:
ctx: MCP context
handle: Handle of the user to follow
Returns:
Status of the follow operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
handle | Yes |
Input Schema (JSON Schema)
{
"properties": {
"handle": {
"title": "Handle",
"type": "string"
}
},
"required": [
"handle"
],
"title": "follow_userArguments",
"type": "object"
}