Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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");
  • 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 {

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/itsanamune/retellsimp'

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