Twitter MCP Server

getFollowing

Get a list of users that a user is following

Input Schema

NameRequiredDescriptionDefault
maxResultsNoThe maximum number of results to return (default: 100, max: 1000)
userFieldsNoAdditional user fields to include in the response
usernameYesThe username of the user whose following list to fetch

Input Schema (JSON Schema)

{ "properties": { "maxResults": { "description": "The maximum number of results to return (default: 100, max: 1000)", "maximum": 1000, "minimum": 1, "type": "number" }, "userFields": { "description": "Additional user fields to include in the response", "items": { "enum": [ "description", "profile_image_url", "public_metrics", "verified", "location", "url" ], "type": "string" }, "type": "array" }, "username": { "description": "The username of the user whose following list to fetch", "type": "string" } }, "required": [ "username" ], "type": "object" }