retell_list_llms
View available LLM configurations for Retell AI's voice and chat agents to select and customize models for conversation flows.
Instructions
List all Retell LLM configurations.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:1205-1206 (handler)The execution handler for the 'retell_list_llms' tool, which sends a GET request to the Retell API endpoint '/list-retell-llms' to list all LLM configurations.case "retell_list_llms": return retellRequest("/list-retell-llms", "GET");
- src/index.ts:754-761 (schema)The tool schema definition including name, description, and empty input schema (no parameters required). This is part of the tools array used for MCP tool listing.{ name: "retell_list_llms", description: "List all Retell LLM configurations.", inputSchema: { type: "object", properties: {} } },
- src/index.ts:1283-1285 (registration)Registration of the tool listing handler that returns the tools array containing the 'retell_list_llms' schema.server.setRequestHandler(ListToolsRequestSchema, async () => { return { tools }; });
- src/index.ts:1288-1293 (registration)Registration of the tool execution handler that dispatches to executeTool based on tool name, handling 'retell_list_llms' via the switch case.server.setRequestHandler(CallToolRequestSchema, async (request) => { const { name, arguments: args } = request.params; try { const result = await executeTool(name, args as Record<string, unknown>); return {