Kong · Schema

MCPCapabilityRequest

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
version string The version of the capability schema (e.g., v1).
offset string The version of the control plane known by the client.
View JSON Schema on GitHub

JSON Schema

kong-mcpcapabilityrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MCPCapabilityRequest",
  "title": "MCPCapabilityRequest",
  "type": "object",
  "properties": {
    "version": {
      "description": "The version of the capability schema (e.g., v1).",
      "type": "string"
    },
    "offset": {
      "description": "The version of the control plane known by the client.",
      "type": "string"
    }
  },
  "additionalProperties": false,
  "required": [
    "version"
  ]
}