Skip to content

Commit a9afd88

Browse files
ppauzasclaude
andcommitted
docs(modules): note RTR is not available on the hosted MCP
Real Time Response is currently excluded on CrowdStrike's hosted Falcon MCP. Adds it to the existing HOSTED_MCP_MODULE_NOTES/overview pattern used for Fusion SOAR and Zero Trust Assessment, matching their wording for consistency. Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 06da7a6 commit a9afd88

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

docs/modules/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ If you self-host and want the same discovery pattern, enable [dynamic mode](/fal
4747

4848
Module and tool coverage also differs:
4949

50-
- [Fusion SOAR](/falcon-mcp/modules/fusion/) and [Zero Trust Assessment](/falcon-mcp/modules/zero-trust-assessment/) are available only on this self-hosted server; the hosted MCP has no equivalent modules.
50+
- [Fusion SOAR](/falcon-mcp/modules/fusion/), [Zero Trust Assessment](/falcon-mcp/modules/zero-trust-assessment/), and [Real Time Response](/falcon-mcp/modules/rtr/) are available only on this self-hosted server; the hosted MCP has no equivalent modules.
5151
- [Cloud Security](/falcon-mcp/modules/cloud/): `falcon_search_cloud_insights`, `falcon_list_cloud_insight_definitions`, and `falcon_get_cloud_asset_insights` are not available on the hosted MCP.
5252
- [Discover](/falcon-mcp/modules/discover/): `falcon_search_managed_assets` is not available on the hosted MCP.
5353
- [Policies](/falcon-mcp/modules/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`).

docs/modules/rtr.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66

77
Initiating and inspecting RTR sessions and for executing read-only RTR commands during host investigations
88

9+
> [!NOTE]
10+
> This module is not available on CrowdStrike's hosted Falcon MCP; it is only available when self-hosting this server. See [module overview](/falcon-mcp/modules/overview/#crowdstrike-hosted-mcp-differences).
11+
912
## API Scopes
1013

1114
- `Real time response:read`

scripts/generate_module_docs.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,10 @@ def _module_link(module_key: str) -> str:
9696
"This module is not available on CrowdStrike's hosted Falcon MCP; it is only "
9797
f"available when self-hosting this server. See [module overview]({_OVERVIEW_LINK})."
9898
),
99+
"rtr": (
100+
"This module is not available on CrowdStrike's hosted Falcon MCP; it is only "
101+
f"available when self-hosting this server. See [module overview]({_OVERVIEW_LINK})."
102+
),
99103
"policies": (
100104
"CrowdStrike's hosted Falcon MCP does not use these unified, `policy_type`-discriminated "
101105
"tools. It instead exposes six policy-type-specific variants of each tool below, suffixed "
@@ -1457,9 +1461,10 @@ def generate_overview_page(modules: dict[str, dict[str, Any]]) -> str:
14571461
lines.append("Module and tool coverage also differs:")
14581462
lines.append("")
14591463
lines.append(
1460-
f"- [Fusion SOAR]({_module_link('fusion')}) and "
1461-
f"[Zero Trust Assessment]({_module_link('zerotrustassessment')}) are available only "
1462-
"on this self-hosted server; the hosted MCP has no equivalent modules."
1464+
f"- [Fusion SOAR]({_module_link('fusion')}), "
1465+
f"[Zero Trust Assessment]({_module_link('zerotrustassessment')}), and "
1466+
f"[Real Time Response]({_module_link('rtr')}) are available only on this self-hosted "
1467+
"server; the hosted MCP has no equivalent modules."
14631468
)
14641469
lines.append(
14651470
f"- [Cloud Security]({_module_link('cloud')}): `falcon_search_cloud_insights`, "

0 commit comments

Comments
 (0)