Skip to content

Module Overview

The Falcon MCP Server provides the following modules. Each module requires specific CrowdStrike API scopes.

ModuleAPI ScopesDescription
AgentWorksCharlotte AI Agent Definition: READ, Charlotte AI Agent Definition: WRITECalling, listing, and observing CrowdStrike AgentWorks (agentic-studio) Charlotte AI agents and their execution traces
Case ManagementCase Templates: READ, Cases: READ, Cases: WRITEManaging CrowdStrike cases, including searching, creating, updating, and managing evidence and tags
Cloud SecurityCloud Groups V2: READ, Cloud Security API Assets: READ, Cloud Security API Detections: READ, Cloud Security API Risks: READ, Cloud Security Policies: READ, Falcon Container Image: READ, Cloud Security Policies: WRITEAccessing and analyzing CrowdStrike Falcon cloud resources like Kubernetes & Containers Inventory, Images Vulnerabilities, Cloud Assets, IOM Findings, CSPM Suppression Rules, Cloud Risks, Cloud Groups, and Cloud Insights
Correlation RulesCorrelation Rules: READ, Correlation Rules: WRITECorrelation Rules module for CrowdStrike Falcon.
Custom IOACustom IOA Rules: READ, Custom IOA Rules: WRITESearching, creating, updating, and deleting Custom IOA (Indicators of Attack) behavioral rules and rule groups using Falcon Custom IOA Service Collection endpoints
Data ProtectionData Protection: READProvides read-only access to Data Protection configuration data — classifications, policies, and content patterns — so an LLM can reason about why a Data Protection detection fired
DetectionsAlerts: READ, Alerts: WRITEAccessing and analyzing CrowdStrike Falcon detections
DiscoverAssets: READAccessing and managing CrowdStrike Falcon Discover applications, managed assets, and unmanaged assets
ExclusionsIOA Exclusions: READ, Machine Learning Exclusions: READ, Sensor Visibility Exclusions: READ, IOA Exclusions: WRITE, Machine Learning Exclusions: WRITE, Sensor Visibility Exclusions: WRITEThis module provides a unified set of tools for managing CrowdStrike exclusions across four types — IOA, Machine Learning, Sensor Visibility, and Certificate-Based — behind a single exclusion_type discriminator
Firewall ManagementFirewall Management: READ, Firewall Management: WRITESearching and managing firewall rules and rule groups
Fusion SOARWorkflows: READ, Workflows: WRITESearching Fusion SOAR workflow definitions and executions, reading what an execution produced, and running an on-demand workflow
GuardianAIDR: READProvides tools for querying AI agent inventory and activity data
Host GroupsHost Groups: READ, Host Groups: WRITESearching, creating, updating, and deleting CrowdStrike Falcon host groups, as well as managing group membership
HostsHosts: READ, Hosts: WRITEAccessing and managing CrowdStrike Falcon hosts/devices
Identity ProtectionIdentity Protection Assessment: READ, Identity Protection Detections: READ, Identity Protection Entities: READ, Identity Protection Timeline: READ, Identity Protection GraphQL: WRITEAccessing and managing CrowdStrike Falcon Identity Protection capabilities
IntelActors (Falcon Intelligence): READ, Indicators (Falcon Intelligence): READ, Reports (Falcon Intelligence): READAccessing and analyzing CrowdStrike Falcon intelligence data
IOCIOC Management: READ, IOC Management: WRITESearching, creating, and deleting custom IOCs using Falcon IOC Service Collection endpoints
NGSIEMNGSIEM: READ, NGSIEM: WRITERunning search queries against CrowdStrike’s Next-Gen SIEM via the asynchronous job-based search API
PoliciesContent Update Policies: READ, Device Control Policies: READ, Firewall Management: READ, Prevention Policies: READ, Response Policies: READ, Sensor Update Policies: READ, Content Update Policies: WRITE, Device Control Policies: WRITE, Firewall Management: WRITE, Prevention Policies: WRITE, Response Policies: WRITE, Sensor Update Policies: WRITEThis module provides a unified set of tools for managing CrowdStrike host-based policies across all six policy types — prevention, sensor_update, firewall, device_control, response, and content_update — behind a single policy_type discriminator
QuarantineQuarantined Files: READ, Quarantined Files: WRITEInvestigating quarantined files and applying quarantine actions during triage and remediation workflows
ReconMonitoring rules (Falcon Intelligence Recon): READSearching Falcon Intelligence Recon notifications, monitoring rules, and exposed-data records
Real Time ResponseReal time response: READ, real-time-response-audit: READ, Real time response: WRITEInitiating and inspecting RTR sessions and for executing read-only RTR commands during host investigations
Scheduled ReportsScheduled Reports: READAccessing and managing CrowdStrike Falcon scheduled reports and scheduled searches
Sensor UsageSensor Usage: READAccessing CrowdStrike Falcon sensor usage data
ServerlessFalcon Container Image: READAccessing and managing CrowdStrike Falcon Serverless Vulnerabilities
ShieldSaaS Security: READ, SaaS Security: WRITEShield module for CrowdStrike Falcon.
SpotlightVulnerabilities: READAccessing and managing CrowdStrike Falcon Spotlight vulnerabilities
Zero Trust AssessmentZero Trust Assessment: READRetrieving Zero Trust Assessment posture scores and sensor and OS hardening signals for hosts

The two servers differ in how a client reaches a tool. The hosted Falcon MCP works through discovery: a client calls search_tools to find a Falcon tool by name or keyword, then execute_tool to run it with arguments. The self-hosted falcon-mcp server registers each falcon_* tool up front instead, so a client calls one by name with no discovery round-trip.

If you self-host and want the same discovery pattern, enable dynamic mode: it swaps the full tool surface for falcon_search_tools, falcon_execute_tool, and an always-on falcon_list_enabled_tools inventory. Mind the falcon_ prefix — those three are the self-hosted falcon-mcp server’s tools, not the hosted MCP’s.

Module and tool coverage also differs:

  • Fusion SOAR, Zero Trust Assessment, and Real Time Response are available only on this self-hosted server; the hosted MCP has no equivalent modules.
  • Cloud Security: falcon_search_cloud_insights, falcon_list_cloud_insight_definitions, and falcon_get_cloud_asset_insights are not available on the hosted MCP.
  • Discover: falcon_search_managed_assets is not available on the hosted MCP.
  • Policies: the hosted MCP does not use the unified policy_type-discriminated tools. It instead exposes six policy-type-specific variants of each tool (for example falcon_search_policies_firewall, falcon_create_policy_prevention).