Twitter MCP Server

createList

Create a new Twitter list

Input Schema

NameRequiredDescriptionDefault
descriptionNoA description of the list
nameYesThe name of the list
privateNoWhether the list should be private

Input Schema (JSON Schema)

{ "properties": { "description": { "description": "A description of the list", "type": "string" }, "name": { "description": "The name of the list", "type": "string" }, "private": { "description": "Whether the list should be private", "type": "boolean" } }, "required": [ "name" ], "type": "object" }