Skip to main content
Glama

retell_update_llm

Modify an AI agent's language model configuration by updating its base model, system prompt, or greeting message to adjust conversation behavior.

Instructions

Update a Retell LLM configuration.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
llm_idYesThe LLM configuration ID to update
modelNoNew base model
general_promptNoNew system prompt
begin_messageNoNew greeting message

Implementation Reference

  • src/index.ts:762-787 (registration)
    Tool registration including name, description, and input schema definition used for MCP tool listing.
    { name: "retell_update_llm", description: "Update a Retell LLM configuration.", inputSchema: { type: "object", properties: { llm_id: { type: "string", description: "The LLM configuration ID to update" }, model: { type: "string", description: "New base model" }, general_prompt: { type: "string", description: "New system prompt" }, begin_message: { type: "string", description: "New greeting message" } }, required: ["llm_id"] } },
  • Handler logic within executeTool switch statement that processes input arguments and makes a PATCH request to the Retell API to update the LLM configuration.
    case "retell_update_llm": { const { llm_id, ...llmUpdateData } = args; return retellRequest(`/update-retell-llm/${llm_id}`, "PATCH", llmUpdateData as Record<string, unknown>); }

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