Twitter MCP Server by EnesCinr
41 score
An MCP server that enables Claude to interact with Twitter, allowing for posting tweets and searching Twitter content.
Ranked #1634 out of 4710 indexed tools.
Is this your tool? Claim this listing to add maintainer context, get a verified badge, and unlock analytics.
Claim listing → Signal Breakdown
Installs 430
Freshness 8mo ago
Issue Health 75%
Stars 385
Platform Breadth 1 platform
Contributors 6
Description Good
How to Improve
Freshness high impact
Platforms medium impact
Supported Platforms
From the README
# Twitter MCP Server
This MCP server allows Clients to interact with Twitter, enabling posting tweets and searching Twitter.
<a href="https://glama.ai/mcp/servers/dhsudtc7cd">
</a>
## Quick Start
1. Create a Twitter Developer account and get your API keys from [Twitter Developer Portal](https://developer.twitter.com/en/portal/dashboard)
2. Add this configuration to your Claude Desktop config file:
**Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
**macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
```json
{
"mcpServers": {
"twitter-mcp": {
"command": "npx",
"args": ["-y", "@enescinar/twitter-mcp"],
"env": {
"API_KEY": "your_api_key_here",
"API_SECRET_KEY": "your_api_secret_key_here",
"ACCESS_TOKEN": "your_access_token_here",
"ACCESS_TOKEN_SECRET": "your_access_token_secret_here"
}
}
}
}
```
3. Restart Claude Desktop
That's it! Claude can now interact with Twitter through Read full README on GitHub →