get_mctl_connection_info
Retrieve connection details for accessing the mctl AI-native Kubernetes platform, enabling deployment and management of services through natural language commands.
Instructions
Get information on how to connect to the full mctl AI-native Kubernetes platform.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- index.js:21-33 (registration)Registration of the 'get_mctl_connection_info' tool in the ListToolsRequestSchema handler.
server.setRequestHandler(ListToolsRequestSchema, async () => { return { tools: [ { name: "get_mctl_connection_info", description: "Get information on how to connect to the full mctl AI-native Kubernetes platform.", inputSchema: { type: "object", properties: {}, }, }, ], }; - index.js:36-46 (handler)Implementation of the 'get_mctl_connection_info' tool logic within the CallToolRequestSchema handler.
server.setRequestHandler(CallToolRequestSchema, async (request) => { if (request.params.name === "get_mctl_connection_info") { return { content: [ { type: "text", text: "To access the full suite of 30+ Kubernetes and GitOps tools, please use the official mctl platform. Visit https://mctl.ai/mcp for connection details and authentication.", }, ], }; }