X (Twitter) MCP server

get_user_followers

Fetch a list of followers for a specific Twitter user by providing their user ID. Specify count and cursor parameters to manage pagination and retrieve desired follower data.

Instructions

Retrieves a list of followers for a given user

Input Schema

NameRequiredDescriptionDefault
countNo
cursorNo
user_idYes

Input Schema (JSON Schema)

{ "properties": { "count": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": 100, "title": "Count" }, "cursor": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Cursor" }, "user_id": { "title": "User Id", "type": "string" } }, "required": [ "user_id" ], "title": "get_user_followersArguments", "type": "object" }
ID: 7w9byzj3wm