MCP Catalogs
Home

falcon-mcp vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

falcon-mcp
by CrowdStrike
filesystem
by modelcontextprotocol
Stars★ 161★ 85,748
30d uses
Score5077
Official
Categories
SecurityDeveloper ToolsOps & Infra
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last committhis monththis month

falcon-mcp · Summary

CrowdStrike's MCP server enables AI agents to access security operations through the Falcon platform.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

falcon-mcp · Install

Install falcon-mcp using either uv (recommended) or pip:

# Using uv
uv tool install falcon-mcp

# Using pip
pip install falcon-mcp

Configuration 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-mcp

To use with Claude Desktop, add this to your config.json:

{
  "mcpServers": {
    "falcon-mcp": {
      "command": "uvx",
      "args": [
        "--env-file",
        "/path/to/.env",
        "falcon-mcp"
      ]
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.