world-intel-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
world-intel-mcp by marc-shade | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 26 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | FinanceSecurityDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
world-intel-mcp · Summary
A comprehensive MCP server with 110+ tools for real-time global intelligence across markets, geopolitics, military, climate, and other domains.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
world-intel-mcp · Use cases
- AI agents requiring real-time global awareness for decision making
- Financial analysis and market intelligence gathering
- Geopolitical risk assessment and military monitoring
- Cyber threat intelligence and infrastructure monitoring
- Climate and environmental disaster tracking
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
world-intel-mcp · Install
git clone https://github.com/marc-shade/world-intel-mcp.git
cd world-intel-mcp
pip install -e .
# Optional extras
pip install -e ".[dashboard]" # Live ops-center dashboard
pip install -e ".[vector]" # Qdrant vector store + FastEmbedClaude Code Configuration
Add to ~/.claude.json:
{
"mcpServers": {
"world-intel-mcp": {
"command": "world-intel-mcp"
}
}
}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