Kong Konnect MCP Server

Official
by Kong

get_control_plane

Retrieve detailed information about a specific control plane in Kong Konnect MCP Server, including ID, name, type, endpoints, and related tools, by providing its controlPlaneId.

Instructions

Get detailed information about a specific control plane.

INPUT:

  • controlPlaneId: String - ID of the control plane to retrieve

OUTPUT:

  • controlPlaneDetails: Object - Detailed information including:
    • controlPlaneId: String - Unique identifier for the control plane
    • name: String - Display name of the control plane
    • description: String - Description of the control plane
    • type: String - Type of the control plane
    • clusterType: String - Underlying cluster type
    • controlPlaneEndpoint: String - URL endpoint for the control plane
    • telemetryEndpoint: String - URL endpoint for telemetry
    • hasCloudGateway: Boolean - Whether cloud gateway is enabled
    • labels: Object - Labels assigned to this control plane
    • metadata: Object - Creation and update timestamps
  • relatedTools: Array - List of related tools for further analysis

Input Schema

NameRequiredDescriptionDefault
controlPlaneIdYesControl Plane ID (obtainable from list-control-planes tool)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "controlPlaneId": { "description": "Control Plane ID (obtainable from list-control-planes tool)", "type": "string" } }, "required": [ "controlPlaneId" ], "type": "object" }
ID: ovzvrcmeag