follow-user
Enables AI assistants to follow a specific user on Bluesky by providing the user's handle. Part of the Bluesky MCP Server for managing social interactions on the ATProtocol.
Instructions
Follow a user on Bluesky
Input Schema
Name | Required | Description | Default |
---|---|---|---|
handle | Yes | The handle of the user to follow |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"handle": {
"description": "The handle of the user to follow",
"type": "string"
}
},
"required": [
"handle"
],
"type": "object"
}