Twitter MCP Server

removeUserFromList

Remove a user from a Twitter list

Input Schema

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

Input Schema (JSON Schema)

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