getFollowers
Retrieve a user's followers on Twitter by specifying their username, maximum results, and optional user fields using the Model Context Protocol on the Twitter MCP Server.
Instructions
Get followers of a user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxResults | No | Maximum number of followers to return | |
userFields | No | Fields to include in the user objects | |
username | Yes | The 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"
}