Google Security MCP

Securitystdio
代码仓库

Google's official collection of Model Context Protocol servers that expose Google's security products to MCP clients. Provides access to Google SecOps (Chronicle) for SIEM search and case management, Google Threat Intelligence for indicator and malware lookups, and Security Command Center for cloud posture and findings. Lets security agents investigate alerts, enrich indicators of compromise, and triage vulnerabilities directly from natural language.

连接

将此配置添加到 .claude/mcp.json

{
  "mcpServers": {
    "google-mcp-security": {
      "command": "npx",
      "args": [],
      "env": {
        "GOOGLE_APPLICATION_CREDENTIALS": "<YOUR_GOOGLE_APPLICATION_CREDENTIALS>"
      }
    }
  }
}

工具 (3)

search_security_events

Search Google SecOps (Chronicle) for security events matching a query over a time range.

{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "UDM or natural-language search query for security events"
    },
    "time_range": {
      "type": "string",
      "description": "Time window to search over (e.g. last 24h)"
    }
  }
}

lookup_threat_indicator

Look up an indicator of compromise (IP, domain, hash, URL) in Google Threat Intelligence.

{
  "type": "object",
  "required": [
    "indicator"
  ],
  "properties": {
    "indicator": {
      "type": "string",
      "description": "The IOC to enrich (IP, domain, file hash, or URL)"
    }
  }
}

list_scc_findings

List Security Command Center findings for a project or organization, filtered by severity or category.

{
  "type": "object",
  "required": [
    "parent"
  ],
  "properties": {
    "parent": {
      "type": "string",
      "description": "Organization, folder, or project resource to query"
    },
    "severity": {
      "type": "string",
      "description": "Optional severity filter (e.g. HIGH, CRITICAL)"
    }
  }
}

资源

此服务器未提供任何资源。

提示词

此服务器未提供任何提示词。

服务器信息

作者
Google (@google)
代码仓库
https://github.com/google/mcp-security
许可证
Apache-2.0
星标
0
最后更新
2026年7月21日