Twitter MCP Server

getUserLists

Get lists owned by a user

Input Schema

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

Input Schema (JSON Schema)

{ "properties": { "listFields": { "description": "Additional list fields to include in the response", "items": { "enum": [ "created_at", "follower_count", "member_count", "private", "description" ], "type": "string" }, "type": "array" }, "maxResults": { "description": "The maximum number of results to return (default: 100, max: 100)", "maximum": 100, "minimum": 1, "type": "number" }, "username": { "description": "The username of the user whose lists to fetch", "type": "string" } }, "required": [ "username" ], "type": "object" }