@retell-ai/mcp-server 5.22.0 → 5.24.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/methods.ts CHANGED
@@ -26,7 +26,7 @@ export const sdkMethods: SdkMethod[] = [
26
26
  clientCallName: 'client.call.list',
27
27
  fullyQualifiedName: 'call.list',
28
28
  httpMethod: 'post',
29
- httpPath: '/v2/list-calls',
29
+ httpPath: '/v3/list-calls',
30
30
  },
31
31
  {
32
32
  clientCallName: 'client.call.delete',
@@ -79,8 +79,8 @@ export const sdkMethods: SdkMethod[] = [
79
79
  {
80
80
  clientCallName: 'client.chat.list',
81
81
  fullyQualifiedName: 'chat.list',
82
- httpMethod: 'get',
83
- httpPath: '/list-chat',
82
+ httpMethod: 'post',
83
+ httpPath: '/v3/list-chats',
84
84
  },
85
85
  {
86
86
  clientCallName: 'client.chat.delete',
@@ -128,7 +128,7 @@ export const sdkMethods: SdkMethod[] = [
128
128
  clientCallName: 'client.phoneNumber.list',
129
129
  fullyQualifiedName: 'phoneNumber.list',
130
130
  httpMethod: 'get',
131
- httpPath: '/list-phone-numbers',
131
+ httpPath: '/v2/list-phone-numbers',
132
132
  },
133
133
  {
134
134
  clientCallName: 'client.phoneNumber.delete',
@@ -178,6 +178,12 @@ export const sdkMethods: SdkMethod[] = [
178
178
  httpMethod: 'get',
179
179
  httpPath: '/get-agent-versions/{agent_id}',
180
180
  },
181
+ {
182
+ clientCallName: 'client.agent.publish',
183
+ fullyQualifiedName: 'agent.publish',
184
+ httpMethod: 'post',
185
+ httpPath: '/publish-agent-version/{agent_id}',
186
+ },
181
187
  {
182
188
  clientCallName: 'client.chatAgent.create',
183
189
  fullyQualifiedName: 'chatAgent.create',
@@ -214,6 +220,12 @@ export const sdkMethods: SdkMethod[] = [
214
220
  httpMethod: 'get',
215
221
  httpPath: '/get-chat-agent-versions/{agent_id}',
216
222
  },
223
+ {
224
+ clientCallName: 'client.chatAgent.publish',
225
+ fullyQualifiedName: 'chatAgent.publish',
226
+ httpMethod: 'post',
227
+ httpPath: '/publish-agent-version/{agent_id}',
228
+ },
217
229
  {
218
230
  clientCallName: 'client.llm.create',
219
231
  fullyQualifiedName: 'llm.create',
@@ -236,7 +248,7 @@ export const sdkMethods: SdkMethod[] = [
236
248
  clientCallName: 'client.llm.list',
237
249
  fullyQualifiedName: 'llm.list',
238
250
  httpMethod: 'get',
239
- httpPath: '/list-retell-llms',
251
+ httpPath: '/v2/list-retell-llms',
240
252
  },
241
253
  {
242
254
  clientCallName: 'client.llm.delete',
@@ -266,7 +278,7 @@ export const sdkMethods: SdkMethod[] = [
266
278
  clientCallName: 'client.conversationFlow.list',
267
279
  fullyQualifiedName: 'conversationFlow.list',
268
280
  httpMethod: 'get',
269
- httpPath: '/list-conversation-flows',
281
+ httpPath: '/v2/list-conversation-flows',
270
282
  },
271
283
  {
272
284
  clientCallName: 'client.conversationFlow.delete',
@@ -296,7 +308,7 @@ export const sdkMethods: SdkMethod[] = [
296
308
  clientCallName: 'client.conversationFlowComponent.list',
297
309
  fullyQualifiedName: 'conversationFlowComponent.list',
298
310
  httpMethod: 'get',
299
- httpPath: '/list-conversation-flow-components',
311
+ httpPath: '/v2/list-conversation-flow-components',
300
312
  },
301
313
  {
302
314
  clientCallName: 'client.conversationFlowComponent.delete',
@@ -428,19 +440,19 @@ export const sdkMethods: SdkMethod[] = [
428
440
  clientCallName: 'client.tests.listBatchTests',
429
441
  fullyQualifiedName: 'tests.listBatchTests',
430
442
  httpMethod: 'get',
431
- httpPath: '/list-batch-tests',
443
+ httpPath: '/v2/list-batch-tests',
432
444
  },
433
445
  {
434
446
  clientCallName: 'client.tests.listTestCaseDefinitions',
435
447
  fullyQualifiedName: 'tests.listTestCaseDefinitions',
436
448
  httpMethod: 'get',
437
- httpPath: '/list-test-case-definitions',
449
+ httpPath: '/v2/list-test-case-definitions',
438
450
  },
439
451
  {
440
452
  clientCallName: 'client.tests.listTestRuns',
441
453
  fullyQualifiedName: 'tests.listTestRuns',
442
454
  httpMethod: 'get',
443
- httpPath: '/list-test-runs/{test_case_batch_job_id}',
455
+ httpPath: '/v2/list-test-runs/{test_case_batch_job_id}',
444
456
  },
445
457
  {
446
458
  clientCallName: 'client.tests.updateTestCaseDefinition',
package/src/server.ts CHANGED
@@ -28,7 +28,7 @@ export const newMcpServer = async ({
28
28
  new McpServer(
29
29
  {
30
30
  name: 'retell_sdk_api',
31
- version: '5.22.0',
31
+ version: '5.24.0',
32
32
  },
33
33
  {
34
34
  instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),