Google Security MCP

Securitystdio
Repositorio

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.

Conectar

Añade esta configuración a .claude/mcp.json

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

Herramientas (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)"
    }
  }
}

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
Google (@google)
Repositorio
https://github.com/google/mcp-security
Licencia
Apache-2.0
Estrellas
0
Última actualización
21 de julio de 2026