Skip to main content
Glama
aws-powertools

Powertools MCP Search Server

schemas.ts654 B
import { z } from 'zod'; import { runtimes } from '../../constants.ts'; /** * Schema for the input of the tool. * * Used to parse the tool arguments and validate them before calling the tool. */ const schema = { search: z .string() .transform((val) => val.toLowerCase().trim()) .describe('what to search for'), runtime: z .enum(runtimes) .describe('the Powertools for AWS runtime to search the documentation for'), version: z .string() .transform((val) => val.toLowerCase().trim()) .optional() .describe('version is always semantic 3 digit in the form x.y.z') .default('latest'), }; export { schema };

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/aws-powertools/powertools-mcp'

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