Skip to main content
Glama
ruegreen

Cisco MCP Pods Server

by ruegreen

get_pod_keyword

Retrieve the current keyword and password configuration for Cisco API Gateway pods to manage authentication credentials and access settings.

Instructions

Get the pod keyword/password record. Returns the current keyword configuration.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler function that executes the tool logic: makes a GET request to the /api/v2/pods/keyword endpoint using the configured base URL and authentication.
    async getPodKeyword() {
      const url = `${this.baseUrl}/api/v2/pods/keyword`;
      return this.makeRequest(url, { method: 'GET' });
    }
  • The tool schema definition including name, description, and empty input schema (no parameters required). Used in ListTools response.
      name: 'get_pod_keyword',
      description: 'Get the pod keyword/password record. Returns the current keyword configuration.',
      inputSchema: {
        type: 'object',
        properties: {},
      },
    },
  • src/index.js:209-219 (registration)
    Tool execution handler in the CallToolRequestSchema switch statement: calls podsClient.getPodKeyword() and formats response as text content.
    case 'get_pod_keyword': {
      const result = await podsClient.getPodKeyword();
      return {
        content: [
          {
            type: 'text',
            text: JSON.stringify(result, null, 2),
          },
        ],
      };
    }
  • Identical tool registration and schema in the HTTP server variant (createMCPServer).
    name: 'get_pod_keyword',
    description: 'Get the pod keyword/password record. Returns the current keyword configuration.',
    inputSchema: {
      type: 'object',
      properties: {},
    },
  • Tool execution handler in HTTP server's CallToolRequestSchema switch statement.
    case 'get_pod_keyword': {
      const result = await podsClient.getPodKeyword();
      return {
        content: [{ type: 'text', text: JSON.stringify(result, null, 2) }],
      };

Latest Blog Posts

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/ruegreen/CiscoMCPPods'

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