Skip to main content
Glama

retell_update_conversation_flow

Modify conversation flows in Retell AI's voice and chat agent platform by updating nodes and edges to adjust agent behavior.

Instructions

Update a conversation flow.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
conversation_flow_idYesThe conversation flow ID to update
nameNoNew name
nodesNoUpdated nodes
edgesNoUpdated edges

Implementation Reference

  • Handler implementation for the 'retell_update_conversation_flow' tool. It extracts the conversation_flow_id from arguments and sends a PATCH request to the Retell API endpoint `/update-conversation-flow/{conversation_flow_id}` with the remaining update data.
    case "retell_update_conversation_flow": { const { conversation_flow_id, ...flowUpdateData } = args; return retellRequest(`/update-conversation-flow/${conversation_flow_id}`, "PATCH", flowUpdateData as Record<string, unknown>); }
  • Tool schema definition for 'retell_update_conversation_flow', including input schema with properties for conversation_flow_id (required), name, nodes, and edges.
    { name: "retell_update_conversation_flow", description: "Update a conversation flow.", inputSchema: { type: "object", properties: { conversation_flow_id: { type: "string", description: "The conversation flow ID to update" }, name: { type: "string", description: "New name" }, nodes: { type: "array", description: "Updated nodes" }, edges: { type: "array", description: "Updated edges" } }, required: ["conversation_flow_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