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
Последнее обновление
21 июля 2026 г.