Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
CrowdStrike avatar

CrowdStrike Falcon MCP Server

  • 227 repo stars
  • Updated July 27, 2026
  • CrowdStrike/falcon-mcp

CrowdStrike Falcon MCP Server is a MCP server that links AI agents to CrowdStrike Falcon APIs for security analysis and automation.

About

CrowdStrike Falcon MCP Server connects Claude Code, Cursor, Codex, and other MCP hosts to your existing Falcon tenant so agents can assist with security analysis and light automation instead of juggling separate consoles. developers shipping SaaS or APIs who already pay for Falcon can register stdio transport, set client credentials, and optionally narrow exposed capabilities with FALCON_MCP_MODULES so the agent does not inherit the entire platform API. The integration is an MCP bridge, not a replacement for Falcon analysts or your SOC runbooks; it shines when you want natural-language triage, log correlation prompts, or scripted checks during security reviews. Regional base URLs and member CID settings keep multi-tenant and geo setups honest. Expect intermediate-to-advanced setup: API keys, least-privilege scopes, and clear prompts so agents do not over-automate in production.

  • stdio MCP server (falcon-mcp) via uvx/PyPI with CrowdStrike API auth
  • Required secrets: FALCON_CLIENT_ID and FALCON_CLIENT_SECRET plus regional FALCON_BASE_URL
  • Optional FALCON_MCP_MODULES comma list to load only the Falcon API surfaces you need
  • MSSP support via FALCON_MEMBER_CID for Flight Control child CID scoping
  • Version 0.11.0 aligned with Model Context Protocol server schema 2025-12-11

CrowdStrike Falcon MCP Server by the numbers

  • Data as of Jul 28, 2026 (Skillselion catalog sync)
terminal
claude mcp add --env FALCON_CLIENT_ID=YOUR_FALCON_CLIENT_ID --env FALCON_CLIENT_SECRET=YOUR_FALCON_CLIENT_SECRET --env FALCON_BASE_URL=YOUR_FALCON_BASE_URL --env FALCON_MEMBER_CID=YOUR_FALCON_MEMBER_CID --env FALCON_MCP_MODULES=YOUR_FALCON_MCP_MODULES --env FALCON_MCP_TRANSPORT=YOUR_FALCON_MCP_TRANSPORT --env FALCON_MCP_DEBUG=YOUR_FALCON_MCP_DEBUG --env FALCON_MCP_HOST=YOUR_FALCON_MCP_HOST --env FALCON_MCP_PORT=YOUR_FALCON_MCP_PORT --env FALCON_MCP_USER_AGENT_COMMENT=YOUR_FALCON_MCP_USER_AGENT_COMMENT --env FALCON_MCP_STATELESS_HTTP=YOUR_FALCON_MCP_STATELESS_HTTP --env FALCON_MCP_API_KEY=YOUR_FALCON_MCP_API_KEY falcon-mcp -- uvx falcon-mcp

Add your badge

Show developers this MCP server is listed on Skillselion. Paste this into your README.

Listed on Skillselion
repo stars227
Packagefalcon-mcp
TransportSTDIO
AuthRequired
Last updatedJuly 27, 2026
RepositoryCrowdStrike/falcon-mcp

What it does

Let your coding agent query CrowdStrike Falcon detections and automate security workflows without leaving the terminal.

Who is it for?

Best when you already use CrowdStrike Falcon and want agent-assisted detection review during release prep.

Skip if: Developers without a Falcon subscription, greenfield projects with no EDR footprint, or anyone expecting a turnkey pentest skill without API governance.

What you get

After registration, your agent can call scoped Falcon modules through MCP so security checks and investigations stay in one workflow.

  • Registered Falcon MCP stdio endpoint in your agent
  • Scoped Falcon API tool surface via FALCON_MCP_MODULES
  • Agent-callable security queries against your Falcon region

By the numbers

  • Server version 0.11.0 (PyPI package falcon-mcp)
  • Transport: stdio; runtime hint uvx
  • Required env: FALCON_CLIENT_ID, FALCON_CLIENT_SECRET
README.md

CrowdStrike Logo (Light) CrowdStrike Logo (Dark)

falcon-mcp

PyPI version PyPI - Python Version License: MIT

falcon-mcp is a Model Context Protocol (MCP) server that connects AI agents with the CrowdStrike Falcon platform, powering intelligent security analysis in your agentic workflows. It delivers programmatic access to essential security capabilities—including detections, threat intelligence, and host management—establishing the foundation for advanced security operations and automation.

[!IMPORTANT] 🚧 Public Preview: This project is currently in public preview and under active development. Features and functionality may change before the stable 1.0 release. While we encourage exploration and testing, please avoid production deployments. We welcome your feedback through GitHub Issues to help shape the final release.

Documentation

Full docs are available at developer.crowdstrike.com/falcon-mcp.

Modules

Module Description
Core Basic connectivity and system information
Case Management Case lifecycle management, evidence attachment, tagging, and templates
Cloud Security Kubernetes containers, image vulnerabilities, CSPM asset inventory, IOM findings, and suppression rules
Correlation Rules Search, create, update, and manage NG-SIEM correlation rules
Custom IOA Create and manage Custom IOA behavioral detection rules and rule groups
Data Protection Search Data Protection classifications, policies, and content patterns
Detections Find and analyze detections to understand malicious activity
Discover Search application inventory and discover unmanaged assets
Exclusions Search, create, update, and delete IOA, machine learning, sensor visibility, and certificate-based exclusions
Firewall Management Search and manage firewall rules and rule groups
Host Groups Search, create, update, and delete host groups; manage group membership
Hosts Manage and query host/device information
Identity Protection Entity investigation and identity protection analysis
Intel Research threat actors, IOCs, and intelligence reports
IOC Search, create, and remove custom indicators of compromise
NGSIEM Execute CQL queries against Next-Gen SIEM
Policies Search, create, update, and delete prevention, sensor update, firewall, device control, response, and content update policies; manage host-group assignment, enable/disable, and precedence
Quarantine Search quarantine records, preview action counts, and release, unrelease, or delete quarantined files
Real Time Response Audit, summarize, and run read-only RTR triage workflows
Scheduled Reports Manage scheduled reports and download report files
Sensor Usage Access and analyze sensor usage data
Serverless Search for vulnerabilities in serverless functions
Shield SaaS security posture, checks, alerts, and app inventory
Spotlight Manage and analyze vulnerability data and security assessments

See the Module Overview for required API scopes, available tools, and FQL resources.

Quick Start

Install

Using uv (recommended)
uv tool install falcon-mcp
Using pip
pip install falcon-mcp

Configure

Set the required environment variables (or use a .env file — see the Configuration Guide):

export FALCON_CLIENT_ID="your-client-id"
export FALCON_CLIENT_SECRET="your-client-secret"
export FALCON_BASE_URL="https://api.crowdstrike.com"

Run

falcon-mcp

See the Getting Started guide for full installation and configuration details.

Editor Integration

Using uvx (recommended)

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

With Module Selection

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

Docker

{
  "mcpServers": {
    "falcon-mcp-docker": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--env-file",
        "/full/path/to/.env",
        "quay.io/crowdstrike/falcon-mcp:latest"
      ]
    }
  }
}

See the Usage guide for all command line options, module configuration, and library usage.

Container Usage

# Pull the latest image
docker pull quay.io/crowdstrike/falcon-mcp:latest

# Run with .env file (stdio transport)
docker run -i --rm --env-file /path/to/.env quay.io/crowdstrike/falcon-mcp:latest

# Run with streamable-http transport
docker run --rm -p 8000:8000 --env-file /path/to/.env \
  quay.io/crowdstrike/falcon-mcp:latest --transport streamable-http --host 0.0.0.0

See the Docker Deployment guide for building locally, custom ports, and advanced configurations.

Dynamic Mode

Running many modules at once inflates the context window every AI client must hold. Dynamic mode replaces the full tool surface with three tools — falcon_list_enabled_modules to see which modules are loaded, falcon_search_tools to discover the right tool on demand, and falcon_execute_tool to run it — so agents only load the schemas they actually need.

falcon-mcp --dynamic
# or: FALCON_MCP_DYNAMIC=true

See the Dynamic Mode guide for the full discover → execute workflow and trade-offs.

Deployment Options

Contributing

# Clone and install
git clone https://github.com/CrowdStrike/falcon-mcp.git
cd falcon-mcp
uv sync --all-extras

# Run tests
uv run pytest

[!IMPORTANT] This project uses Conventional Commits for automated releases. Please follow the commit message format outlined in our Contributing Guide.

Developer Documentation

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

This is a community-driven, open source project. While it is not an official CrowdStrike product, it is actively maintained by CrowdStrike and supported in collaboration with the open source developer community.

For more information, please see our SUPPORT file.

Recommended MCP Servers

How it compares

CrowdStrike API MCP integration, not a generic code-review or SAST agent skill.

FAQ

Who is CrowdStrike Falcon MCP Server for?

It is for developers and operators who run Falcon in production and want MCP-connected agents to help with security queries and automation using official API credentials.

When should I use CrowdStrike Falcon MCP Server?

Use it during Ship security reviews, incident triage, or when automating repeatable Falcon lookups while building or maintaining agent tooling.

How do I add CrowdStrike Falcon MCP Server to my agent?

Install the falcon-mcp package with uvx, set FALCON_CLIENT_ID and FALCON_CLIENT_SECRET (and optional FALCON_BASE_URL or modules), then register the stdio server in your MCP client config.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.