Skip to main content
Glama

retell_update_call

Modify call metadata or adjust data retention policies for existing voice or chat agent interactions.

Instructions

Update call metadata or data storage settings for a specific call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
call_idYesThe unique identifier of the call to update
metadataNoNew metadata to set for the call
data_storage_settingNoData retention policy for the call

Implementation Reference

  • Handler for retell_update_call: extracts call_id from arguments, sends PATCH request to Retell API /v2/update-call/{call_id} with remaining args as body.
    case "retell_update_call": {
      const { call_id, ...updateData } = args;
      return retellRequest(`/v2/update-call/${call_id}`, "PATCH", updateData as Record<string, unknown>);
    }
  • Tool schema definition including name, description, and inputSchema with properties call_id (required), metadata, data_storage_setting.
    {
      name: "retell_update_call",
      description: "Update call metadata or data storage settings for a specific call.",
      inputSchema: {
        type: "object",
        properties: {
          call_id: {
            type: "string",
            description: "The unique identifier of the call to update"
          },
          metadata: {
            type: "object",
            description: "New metadata to set for the call"
          },
          data_storage_setting: {
            type: "string",
            enum: ["everything", "everything_except_pii", "basic_attributes_only"],
            description: "Data retention policy for the call"
          }
        },
        required: ["call_id"]
      }
    },
  • src/index.ts:1283-1285 (registration)
    Registers the list tools handler which returns the tools array containing the retell_update_call tool definition.
    server.setRequestHandler(ListToolsRequestSchema, async () => {
      return { tools };
    });

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