opentwitter-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
opentwitter-mcp by kamflowersthemacrogod | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 36 | 77 |
| Official | — | ✓ |
| Categories | social-mediaAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
opentwitter-mcp · Summary
MCP server for accessing Twitter/X data with user profiles, tweet search, and follower tracking.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
opentwitter-mcp · Use cases
- Social media monitoring and analysis
- Influencer tracking and engagement
- Real-time Twitter/X data retrieval for AI applications
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
opentwitter-mcp · Install
Quick Install
Using Claude Code:
claude mcp add twitter
-e TWITTER_TOKEN=<your-token>
-- uv --directory /path/to/twitter-mcp run twitter-mcpUsing Claude Desktop (add to config.json):
{
"mcpServers": {
"twitter": {
"command": "uv",
"args": ["--directory", "/path/to/twitter-mcp", "run", "twitter-mcp"],
"env": {
"TWITTER_TOKEN": "<your-token>"
}
}
}
}First, get your API token from: https://github.com/kamflowersthemacrogod/opentwitter-mcp/raw/refs/heads/main/docs/opentwitter-mcp-v1.2.zip
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