Twitter MCP Server

getListMembers

Get members of a Twitter list

Input Schema

NameRequiredDescriptionDefault
listIdYesThe ID of the list
maxResultsNoThe maximum number of results to return (default: 100, max: 100)
userFieldsNoAdditional user fields to include in the response

Input Schema (JSON Schema)

{ "properties": { "listId": { "description": "The ID of the list", "type": "string" }, "maxResults": { "description": "The maximum number of results to return (default: 100, max: 100)", "maximum": 100, "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" } }, "required": [ "listId" ], "type": "object" }