createList
Generate and manage Twitter lists by defining a name, description, and privacy settings, enabling organized curation of accounts and tweets through the Twitter MCP Server.
Instructions
Create a new Twitter list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | A description of the list | |
name | Yes | The name of the list | |
private | No | Whether 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"
}