Skip to main content
Glama

retell_delete_llm

Remove an LLM configuration from the Retell AI voice and chat agent platform to manage conversation flows and agent settings.

Instructions

Delete a Retell LLM configuration.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
llm_idYesThe LLM configuration ID to delete

Implementation Reference

  • The execution handler for the retell_delete_llm tool within the executeTool function's switch statement. It constructs a DELETE request to the Retell API endpoint `/delete-retell-llm/{llm_id}` using the retellRequest helper.
    case "retell_delete_llm": return retellRequest(`/delete-retell-llm/${args.llm_id}`, "DELETE");
  • src/index.ts:788-800 (registration)
    Registration of the retell_delete_llm tool in the global tools array used for listing available tools via ListToolsRequestHandler.
    { name: "retell_delete_llm", description: "Delete a Retell LLM configuration.", inputSchema: { type: "object", properties: { llm_id: { type: "string", description: "The LLM configuration ID to delete" } }, required: ["llm_id"] }
  • Input schema definition for the retell_delete_llm tool, specifying the required 'llm_id' parameter.
    inputSchema: { type: "object", properties: { llm_id: { type: "string", description: "The LLM configuration ID to delete" } }, required: ["llm_id"]

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