addUserToList
Add a specified user to a Twitter list by providing the list ID and the username, enabling organized user management directly through the Twitter MCP Server.
Instructions
Add a user to a Twitter list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
listId | Yes | The ID of the list | |
username | Yes | The 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"
}