twitter-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
twitter-mcp by Dishant27 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 3 | ★ 85,748 |
| 30d uses | — | — |
| Score | 30 | 77 |
| Official | — | ✓ |
| Categories | CommunicationProductivityDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 14 mo ago | this month |
twitter-mcp · Summary
MCP server for X (Twitter) integration enabling CRUD operations via Twitter API.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
twitter-mcp · Use cases
- Automate social media posting through AI agents
- Monitor mentions and track engagement on tweets
- Manage Twitter accounts programmatically for businesses
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
twitter-mcp · Install
Installation
- Create an X Developer account and get API keys from [X Developer Portal](https://developer.twitter.com/en/portal/dashboard)
- Set required environment variables:
``bash TWITTER_API_KEY=your_api_key TWITTER_API_SECRET=your_api_secret TWITTER_ACCESS_TOKEN=your_access_token TWITTER_ACCESS_TOKEN_SECRET=your_access_token_secret ``
- Clone and install:
``bash git clone https://github.com/Dishant27/twitter-mcp.git cd twitter-mcp npm install npm start ``
Claude Desktop Configuration
Add to your Claude MCP config file:
{
"name": "x",
"display_name": "X",
"description": "X MCP allows Claude to interact with X (formerly Twitter)",
"path": "path/to/twitter-mcp/dist/index.js",
"startup": {
"env": {
"TWITTER_API_KEY": "your_api_key",
"TWITTER_API_SECRET": "your_api_secret",
"TWITTER_ACCESS_TOKEN": "your_access_token",
"TWITTER_ACCESS_TOKEN_SECRET": "your_access_token_secret"
}
},
"transport": "stdio"
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything