Skip to main content
Glama

list_ssm_parameters

Retrieve names of SSM Parameters stored in AWS Systems Manager to manage configuration data across services.

Instructions

Lists SSM Parameters (names only).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler logic for the 'list_ssm_parameters' tool. It sends a DescribeParametersCommand to the SSMClient, extracts parameter names, types, and descriptions, and returns them as JSON.
    if (name === "list_ssm_parameters") { // DescribeParameters mainly lists them const command = new DescribeParametersCommand({}); const response = await ssmClient.send(command); const params = response.Parameters?.map(p => ({ Name: p.Name, Type: p.Type, Description: p.Description })) || []; return { content: [{ type: "text", text: JSON.stringify(params, null, 2) }] }; }
  • src/index.ts:762-766 (registration)
    Tool registration in the ListToolsRequestSchema handler, including name, description, and input schema (empty object).
    { name: "list_ssm_parameters", description: "Lists SSM Parameters (names only).", inputSchema: { "type": "object", "properties": {} } },
  • Initialization of the SSMClient used by the list_ssm_parameters handler.
    const ssmClient = new SSMClient({});
  • Import of SSMClient and DescribeParametersCommand required for the tool implementation.
    import { SSMClient, DescribeParametersCommand } from "@aws-sdk/client-ssm";

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/Bhavesh8890/MCP-server'

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