Twitter MCP Server

addUserToList

Add a user to a Twitter list

Input Schema

NameRequiredDescriptionDefault
listIdYesThe ID of the list
usernameYesThe username of the user to add

Input Schema (JSON Schema)

{ "properties": { "listId": { "description": "The ID of the list", "type": "string" }, "username": { "description": "The username of the user to add", "type": "string" } }, "required": [ "listId", "username" ], "type": "object" }