Kong Konnect MCP Server

Official
by Kong

list_control_plane_group_memberships

Retrieve detailed information about all member control planes within a specific control plane group, including their IDs, names, descriptions, types, and membership statuses, with pagination support for efficient data retrieval.

Instructions

List all control planes that are members of a specific control plane group.

INPUT:

  • groupId: String - ID of the control plane group (control plane that acts as the group)
  • pageSize: Number - Number of members to return per page (1-1000, default: 10)
  • pageAfter: String (optional) - Cursor for pagination after a specific item

OUTPUT:

  • metadata: Object - Contains groupId, pageSize, pageAfter, nextPageAfter, totalCount
  • members: Array - List of member control planes with details for each 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
    • membershipStatus: Object - Group membership status including:
      • status: String - Current status (OK, CONFLICT, etc.)
      • message: String - Status message
      • conflicts: Array - List of configuration conflicts if any
    • metadata: Object - Creation and update timestamps
  • relatedTools: Array - List of related tools for group management

Input Schema

NameRequiredDescriptionDefault
groupIdYesControl plane group ID (the ID of the control plane that acts as the group)
pageAfterNoCursor for pagination after a specific item
pageSizeNoNumber of members to return per page

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "groupId": { "description": "Control plane group ID (the ID of the control plane that acts as the group)", "type": "string" }, "pageAfter": { "description": "Cursor for pagination after a specific item", "type": "string" }, "pageSize": { "default": 10, "description": "Number of members to return per page", "maximum": 1000, "minimum": 1, "type": "integer" } }, "required": [ "groupId" ], "type": "object" }
ID: ovzvrcmeag