falcon-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
falcon-mcp by CrowdStrike | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 161 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | SecurityDeveloper ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
falcon-mcp · Summary
CrowdStrike's MCP server enables AI agents to access security operations through the Falcon platform.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
falcon-mcp · Use cases
- Automate security analysis and threat hunting with AI agents
- Integrate CrowdStrike Falcon capabilities into agentic workflows
- Enable security operations through AI-powered security assistants
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
falcon-mcp · Install
Install falcon-mcp using either uv (recommended) or pip:
# Using uv
uv tool install falcon-mcp
# Using pip
pip install falcon-mcpConfiguration requires environment variables:
export FALCON_CLIENT_ID="your-client-id"
export FALCON_CLIENT_SECRET="your-client-secret"
export FALCON_BASE_URL="https://api.crowdstrike.com"Run with:
falcon-mcpTo use with Claude Desktop, add this to your config.json:
{
"mcpServers": {
"falcon-mcp": {
"command": "uvx",
"args": [
"--env-file",
"/path/to/.env",
"falcon-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