Kong · Schema

MCPServerSignalV1

Signal notifying the client that the MCP control plane config has changed.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
type string
version string The current version of the MCP control plane.
offset string The offset for the MCP signal.
View JSON Schema on GitHub

JSON Schema

kong-mcpserversignalv1-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MCPServerSignalV1",
  "title": "MCPServerSignalV1",
  "description": "Signal notifying the client that the MCP control plane config has changed.\n",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "mcp"
      ]
    },
    "version": {
      "description": "The current version of the MCP control plane.",
      "type": "string"
    },
    "offset": {
      "description": "The offset for the MCP signal.",
      "type": "string"
    }
  },
  "example": {
    "type": "mcp",
    "version": "v1",
    "offset": "6"
  },
  "additionalProperties": false,
  "required": [
    "type",
    "version",
    "offset"
  ]
}