get_follows
Retrieve a list of accounts followed by a specific user on Bluesky Social MCP. Specify handle, limit, and optional cursor for paginated results.
Instructions
Get users followed by an account.
Args:
ctx: MCP context
handle: Optional handle to get follows for. If None, gets the authenticated user
limit: Maximum number of results to return (1-100)
cursor: Optional pagination cursor
Returns:
List of followed accounts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | ||
handle | No | ||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Cursor"
},
"handle": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Handle"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"default": 50,
"title": "Limit"
}
},
"title": "get_followsArguments",
"type": "object"
}