Skip to main content
Glama

Kong Konnect MCP Server

Official
by Kong

list_control_plane_group_memberships

Retrieve details of all control planes within a specific group, including IDs, names, types, and membership status. Use groupId and pagination parameters to manage and inspect control plane configurations efficiently.

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" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Kong/mcp-konnect'

If you have feedback or need assistance with the MCP directory API, please join our Discord server