Twitter MCP Server

getFollowers

Get followers of a user

Input Schema

NameRequiredDescriptionDefault
maxResultsNoMaximum number of followers to return
userFieldsNoFields to include in the user objects
usernameYesThe username of the account

Input Schema (JSON Schema)

{ "properties": { "maxResults": { "description": "Maximum number of followers to return", "type": "number" }, "userFields": { "description": "Fields to include in the user objects", "items": { "type": "string" }, "type": "array" }, "username": { "description": "The username of the account", "type": "string" } }, "required": [ "username" ], "type": "object" }