Kong Konnect MCP Server

Official
by Kong

check_control_plane_group_membership

Verify control plane group membership by checking if a specific control plane belongs to any group, retrieving membership details, status, and configuration conflicts.

Instructions

Check if a control plane is a member of any group.

INPUT:

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

OUTPUT:

  • controlPlaneId: String - ID of the control plane that was checked
  • groupMembership: Object - Membership information including:
    • isMember: Boolean - Whether the control plane is a member of any group
    • groupId: String - ID of the group this control plane belongs to (if any)
    • groupName: String - Name of the group this control plane belongs to
    • status: String - Membership status (OK, CONFLICT, etc.)
    • message: String - Status message
    • conflicts: Array - List of configuration conflicts if any
  • relatedTools: Array - List of related tools for group management

Input Schema

NameRequiredDescriptionDefault
controlPlaneIdYesControl plane ID to check (can be obtained 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 to check (can be obtained from list-control-planes tool)", "type": "string" } }, "required": [ "controlPlaneId" ], "type": "object" }
ID: ovzvrcmeag