Metadata-Version: 2.3
Name: twitter-mcp
Version: 0.1.1
Summary: A twitter MCP server
License: MIT
Author: yanrujing
Author-email: rujing.yan@protagonist-ai.com
Requires-Python: >=3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: mcp (>=1.6.0,<2.0.0)
Requires-Dist: tweepy (==4.16.0)
Description-Content-Type: text/markdown

# Twitter MCP

This MCP (Modular Connector Plugin) allows interaction with Twitter, enabling actions such as posting tweets, reading timelines, and managing followers.
It supports authentication via both Twitter Scraper and Twitter API.

## usage
```
{
  "mcpServers": {
    "twitter-mcp": {
      "env": {
        "CONSUMER_KEY": "CONSUMER_KEY",
        "CONSUMER_SECRET": "CONSUMER_SECRET",
        "ACCESS_TOKEN": "ACCESS_TOKEN",
        "ACCESS_TOKEN_SECRET": ACCESS_TOKEN_SECRET
      },
      "command": "uvx",
      "args": [
        "twitter-mcp"
      ]
    }
  }
}
```

