everything vs x-twitter-scraper
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | x-twitter-scraper by Xquik-dev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 82 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Web ScrapingCommunicationDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
x-twitter-scraper · Summary
MCP server with 2 tools for Twitter/X data extraction and API interaction via 100+ endpoints.
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
x-twitter-scraper · Use cases
- Extracting tweet data and user profiles for social media analytics
- Automating social media content monitoring and engagement tracking
- Building applications that interact with Twitter/X through AI agents
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-everythingx-twitter-scraper · Install
Installation
Install via the skills CLI (auto-detects your installed agents):
npx skills@1.5.3 add Xquik-dev/x-twitter-scraperFor Claude Desktop, add the following to your claude_desktop_config.json:
{
"mcpServers": {
"x-twitter-scraper": {
"command": "node",
"args": ["/path/to/x-twitter-scraper/dist/index.js"]
}
}
}