Kong · Schema

MCPServerSignals

The MCP server signals response.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
signals array A list of signals for the MCP server.
View JSON Schema on GitHub

JSON Schema

kong-mcpserversignals-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MCPServerSignals",
  "title": "MCPServerSignals",
  "description": "The MCP server signals response.",
  "type": "object",
  "properties": {
    "signals": {
      "description": "A list of signals for the MCP server.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MCPServerSignal"
      }
    }
  },
  "required": [
    "signals"
  ]
}