Best for
- Developers
- Data analysts
- Marketers needing real-time Twitter account monitoring
- AI assistant users integrating Twitter data into workflows
The server is designed to connect exclusively to the ai.6551.io API. Code review indicates that tools only perform API queries, with no file writes, command execution, or other dangerous operations. Configuration only reads tokens from environment variables or config.json, with no hardcoded secrets. Dependencies are limited to mcp and httpx; no suspicious packages were found.
opentwitter-mcp is an MCP server that provides access to Twitter/X data via an API. It enables AI assistants to fetch user profiles, search tweets, monitor follower events, track KOL followers, and manage real-time watch lists. The server authenticates using an OPENNEWS_TOKEN via environment variables or config file, and supports real-time event subscriptions via WebSocket.
{
"mcpServers": {
"twitter": {
"command": "uv",
"args": [
"--directory",
"/path/to/twitter-mcp",
"run",
"twitter-mcp"
],
"env": {
"OPENNEWS_TOKEN": "<your-token>"
}
}
}
}