@retell-ai/mcp-server 5.18.0 → 5.20.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
@@ -172,12 +172,6 @@ export const sdkMethods: SdkMethod[] = [
172
172
  httpMethod: 'get',
173
173
  httpPath: '/get-agent-versions/{agent_id}',
174
174
  },
175
- {
176
- clientCallName: 'client.agent.publish',
177
- fullyQualifiedName: 'agent.publish',
178
- httpMethod: 'post',
179
- httpPath: '/publish-agent/{agent_id}',
180
- },
181
175
  {
182
176
  clientCallName: 'client.chatAgent.create',
183
177
  fullyQualifiedName: 'chatAgent.create',
@@ -214,12 +208,6 @@ export const sdkMethods: SdkMethod[] = [
214
208
  httpMethod: 'get',
215
209
  httpPath: '/get-chat-agent-versions/{agent_id}',
216
210
  },
217
- {
218
- clientCallName: 'client.chatAgent.publish',
219
- fullyQualifiedName: 'chatAgent.publish',
220
- httpMethod: 'post',
221
- httpPath: '/publish-chat-agent/{agent_id}',
222
- },
223
211
  {
224
212
  clientCallName: 'client.llm.create',
225
213
  fullyQualifiedName: 'llm.create',
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.18.0',
31
+ version: '5.20.0',
32
32
  },
33
33
  {
34
34
  instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),