
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@crowdstrike/aidr-mcp-proxy
Advanced tools
Protect any MCP server from malicious entities and confidential PII.
Protect communications between a client and any MCP server. Now with 99% less prompt injection! The CrowdStrike AIDR MCP proxy allows any MCP client to secure the messages it sends and receives to/from an MCP server, using the CrowdStrike AIDR service to guard tools' inputs and outputs.
What it does: protect users from common threat vectors by running all MCP I/O through CrowdStrike AIDR, which blocks:
In an existing stdio-based MCP server configuration like the following:
{
"mcpServers": {
"qrcode": {
"command": "npx",
"args": ["-y", "@jwalsh/mcp-server-qrcode"]
}
}
}
Wrap the original command with npx -y @crowdstrike/aidr-mcp-proxy and add
environment variables:
{
"mcpServers": {
"qrcode": {
"command": "npx",
"args": [
"-y",
"@crowdstrike/aidr-mcp-proxy",
"--",
"npx",
"-y",
"@jwalsh/mcp-server-qrcode"
],
"env": {
"CS_AIDR_TOKEN": "cs_00000000000000000000000000000000",
"CS_AIDR_BASE_URL_TEMPLATE": "https://api.falcon.crowdstrike.com/aidr/{SERVICE_NAME}"
}
}
}
}
CS_AIDR_TOKEN value to the CrowdStrike AIDR API token.CS_AIDR_BASE_URL_TEMPLATE value to the CrowdStrike AIDR base URL
template.For remote servers using HTTP or SSE, use mcp-remote to turn them into stdio servers:
{
"mcpServers": {
"proxied": {
"command": "npx",
"args": [
"-y",
"@crowdstrike/aidr-mcp-proxy",
"--",
"npx",
"-y",
"mcp-remote",
"https://remote.mcp.server/sse"
],
"env": {
"CS_AIDR_TOKEN": "cs_00000000000000000000000000000000",
"CS_AIDR_BASE_URL_TEMPLATE": "https://api.falcon.crowdstrike.com/aidr/{SERVICE_NAME}"
}
}
}
}
To identify the calling app by ID in CrowdStrike AIDR, set the APP_ID
environment variable.
To identify the calling app by name in CrowdStrike AIDR, set the APP_NAME
environment variable.
FAQs
Protect any MCP server from malicious entities and confidential PII.
The npm package @crowdstrike/aidr-mcp-proxy receives a total of 1 weekly downloads. As such, @crowdstrike/aidr-mcp-proxy popularity was classified as not popular.
We found that @crowdstrike/aidr-mcp-proxy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.