@segmentflow/segmentflow-mcp 0.8.0 → 0.9.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
@@ -196,6 +196,36 @@ export const sdkMethods: SdkMethod[] = [
196
196
  httpMethod: 'post',
197
197
  httpPath: '/api/v1/templates/{id}/unarchive',
198
198
  },
199
+ {
200
+ clientCallName: 'client.v1.broadcasts.create',
201
+ fullyQualifiedName: 'v1.broadcasts.create',
202
+ httpMethod: 'post',
203
+ httpPath: '/api/v1/broadcasts',
204
+ },
205
+ {
206
+ clientCallName: 'client.v1.emails.retrieve',
207
+ fullyQualifiedName: 'v1.emails.retrieve',
208
+ httpMethod: 'get',
209
+ httpPath: '/api/v1/emails/{id}',
210
+ },
211
+ {
212
+ clientCallName: 'client.v1.emails.batchSend',
213
+ fullyQualifiedName: 'v1.emails.batchSend',
214
+ httpMethod: 'post',
215
+ httpPath: '/api/v1/emails/batch',
216
+ },
217
+ {
218
+ clientCallName: 'client.v1.emails.send',
219
+ fullyQualifiedName: 'v1.emails.send',
220
+ httpMethod: 'post',
221
+ httpPath: '/api/v1/emails',
222
+ },
223
+ {
224
+ clientCallName: 'client.v1.events.track',
225
+ fullyQualifiedName: 'v1.events.track',
226
+ httpMethod: 'post',
227
+ httpPath: '/api/v1/events',
228
+ },
199
229
  ];
200
230
 
201
231
  function allowedMethodsForCodeTool(options: McpOptions | undefined): SdkMethod[] | undefined {
package/src/server.ts CHANGED
@@ -29,7 +29,7 @@ export const newMcpServer = async ({
29
29
  new McpServer(
30
30
  {
31
31
  name: 'segmentflow_segmentflow_typescript_api',
32
- version: '0.8.0',
32
+ version: '0.9.0',
33
33
  },
34
34
  {
35
35
  instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),