retell_get_concurrency
Check current concurrent call limits and usage for your Retell AI account to monitor agent capacity and manage call volume effectively.
Instructions
Check the current concurrent call limits and usage for your account.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:1259-1260 (handler)The execution handler for the 'retell_get_concurrency' tool. It makes a GET request to the Retell API's '/get-concurrency' endpoint with no arguments.case "retell_get_concurrency": return retellRequest("/get-concurrency", "GET");
- src/index.ts:1084-1090 (schema)Tool schema definition including name, description, and empty input schema (no required parameters).name: "retell_get_concurrency", description: "Check the current concurrent call limits and usage for your account.", inputSchema: { type: "object", properties: {} } },
- src/index.ts:1084-1090 (registration)The tool is registered in the 'tools' array used by the ListToolsRequestHandler.name: "retell_get_concurrency", description: "Check the current concurrent call limits and usage for your account.", inputSchema: { type: "object", properties: {} } },