@apteva/integrations 0.15.10 → 0.15.12

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.
Files changed (54) hide show
  1. package/dist/http-executor.d.ts.map +1 -1
  2. package/dist/http-executor.js +144 -8
  3. package/dist/http-executor.js.map +1 -1
  4. package/dist/mcp-generator.js +24 -0
  5. package/dist/mcp-generator.js.map +1 -1
  6. package/dist/types.d.ts +7 -0
  7. package/dist/types.d.ts.map +1 -1
  8. package/package.json +1 -1
  9. package/src/apps/anthropic-admin.json +183 -0
  10. package/src/apps/aws-ses.json +1 -1
  11. package/src/apps/braintree.json +53 -0
  12. package/src/apps/bunny-stream.json +50 -28
  13. package/src/apps/ccbill.json +142 -0
  14. package/src/apps/close.json +238 -301
  15. package/src/apps/craftcloud.json +251 -202
  16. package/src/apps/dataforseo.json +1700 -2
  17. package/src/apps/deepgram.json +288 -1
  18. package/src/apps/elevenlabs.json +9 -0
  19. package/src/apps/fal-ai.json +278 -290
  20. package/src/apps/gladia.json +158 -0
  21. package/src/apps/gmail.json +2 -5
  22. package/src/apps/gumroad.json +569 -0
  23. package/src/apps/imaterialise.json +171 -262
  24. package/src/apps/jlcpcb.json +43 -0
  25. package/src/apps/jungle-scout.json +166 -0
  26. package/src/apps/kling-ai.json +197 -161
  27. package/src/apps/ko-fi.json +34 -0
  28. package/src/apps/leadbyte.json +16 -54
  29. package/src/apps/lemon-squeezy.json +270 -0
  30. package/src/apps/mollie.json +219 -0
  31. package/src/apps/paddle.json +199 -9
  32. package/src/apps/payhip.json +162 -0
  33. package/src/apps/paystack.json +207 -0
  34. package/src/apps/pipedrive.json +221 -212
  35. package/src/apps/razorpay.json +207 -0
  36. package/src/apps/replicate.json +315 -61
  37. package/src/apps/ringover.json +69 -0
  38. package/src/apps/runpod.json +727 -0
  39. package/src/apps/runway.json +386 -0
  40. package/src/apps/salesforce-crm.json +192 -233
  41. package/src/apps/sculpteo.json +98 -180
  42. package/src/apps/segpay.json +215 -0
  43. package/src/apps/shapeways.json +114 -136
  44. package/src/apps/slant3d.json +260 -168
  45. package/src/apps/soniox.json +194 -0
  46. package/src/apps/speechmatics.json +167 -0
  47. package/src/apps/stability-ai.json +356 -0
  48. package/src/apps/stripe.json +1 -0
  49. package/src/apps/surfer.json +511 -0
  50. package/src/apps/twitter-api.json +19 -21
  51. package/src/apps/verotel.json +124 -0
  52. package/src/apps/whop.json +364 -0
  53. package/src/apps/zendesk-sell.json +248 -0
  54. package/src/apps/zendesk.json +190 -259
@@ -1,297 +1,346 @@
1
1
  {
2
2
  "slug": "craftcloud",
3
3
  "name": "Craftcloud",
4
- "description": "MCP server for Craftcloud - 3D printing price comparison service connecting 150+ manufacturing services worldwide",
4
+ "description": "Craftcloud v5 API for 3D printing/CNC model configurations, price requests, grouped vendor offers, carts, orders, and order status.",
5
5
  "logo": "https://www.google.com/s2/favicons?domain=craftcloud3d.com&sz=128",
6
- "categories": [
7
- "3d-printing",
8
- "manufacturing",
9
- "price-comparison",
10
- "craftcloud",
11
- "all3dp"
12
- ],
6
+ "categories": ["3d-printing", "manufacturing", "price-comparison", "craftcloud", "all3dp"],
13
7
  "base_url": "https://api.craftcloud3d.com",
14
8
  "auth": {
15
- "types": [
16
- "bearer"
17
- ],
18
- "headers": {
19
- "Authorization": "Bearer {{token}}"
20
- },
9
+ "types": ["api_key"],
10
+ "headers": {},
21
11
  "credential_fields": [
22
12
  {
23
- "name": "api_key",
24
- "label": "Api_key",
25
- "description": "Your Craftcloud API key (contact Craftcloud for API access)"
13
+ "name": "token",
14
+ "label": "Optional API Token",
15
+ "required": false,
16
+ "description": "Craftcloud public Swagger does not declare auth. Leave blank unless Craftcloud gives you a partner token for a private deployment."
26
17
  }
27
18
  ]
28
19
  },
29
20
  "tools": [
30
21
  {
31
- "name": "model_upload",
32
- "description": "Upload a 3D model file to Craftcloud",
22
+ "name": "health_check",
23
+ "description": "Check Craftcloud API health.",
33
24
  "method": "GET",
34
- "path": "/model-upload",
25
+ "path": "/v5/health_check",
26
+ "input_schema": { "type": "object", "properties": {} }
27
+ },
28
+ {
29
+ "name": "upload_model",
30
+ "description": "Upload a model file to Craftcloud. The initial response may not include parsed geometry yet; poll get_model until parsing completes.",
31
+ "method": "POST",
32
+ "path": "/v5/model",
33
+ "multipart_form": {
34
+ "file_fields": {
35
+ "file": "file"
36
+ },
37
+ "field_names": ["unit", "refresh"]
38
+ },
35
39
  "input_schema": {
36
40
  "type": "object",
37
41
  "properties": {
38
- "file": {
39
- "type": "string",
40
- "description": "Base64 encoded 3D model file"
41
- },
42
- "fileName": {
43
- "type": "string",
44
- "description": "Name of the file"
45
- },
46
- "fileURL": {
47
- "type": "string",
48
- "description": "URL to the 3D model file (alternative to base64)"
49
- }
50
- }
42
+ "file": { "type": "string", "description": "Model file bytes as base64, data URL, or raw string." },
43
+ "filename": { "type": "string", "description": "Filename with extension." },
44
+ "unit": { "type": "string", "enum": ["mm", "cm", "in"], "default": "mm" },
45
+ "refresh": { "type": "boolean", "default": false }
46
+ },
47
+ "required": ["file", "filename"]
51
48
  }
52
49
  },
53
50
  {
54
- "name": "model_get",
55
- "description": "Get a model by ID from Craftcloud",
51
+ "name": "get_model",
52
+ "description": "Get a Craftcloud model by id. A 206 response means geometry parsing is still in progress and the request should be retried.",
56
53
  "method": "GET",
57
- "path": "/model-get",
54
+ "path": "/v5/model/{modelId}",
55
+ "input_schema": {
56
+ "type": "object",
57
+ "properties": {
58
+ "modelId": { "type": "string", "description": "Craftcloud model id, usually the SHA-256 hash of the model file." }
59
+ },
60
+ "required": ["modelId"]
61
+ }
62
+ },
63
+ {
64
+ "name": "evolve_model",
65
+ "description": "Create a new model variant from an existing model with different properties.",
66
+ "method": "POST",
67
+ "path": "/v5/model/{modelId}/evolve",
68
+ "body_root_param": "body",
58
69
  "input_schema": {
59
70
  "type": "object",
60
71
  "properties": {
61
- "modelId": {
62
- "type": "string",
63
- "description": "The model ID"
72
+ "modelId": { "type": "string" },
73
+ "body": { "type": "object", "description": "Craftcloud evolve-model payload." }
74
+ },
75
+ "required": ["modelId", "body"]
76
+ }
77
+ },
78
+ {
79
+ "name": "create_configuration",
80
+ "description": "Create a product configuration from one or more existing model ids and quantities.",
81
+ "method": "POST",
82
+ "path": "/v5/configuration",
83
+ "body_root_param": "body",
84
+ "input_schema": {
85
+ "type": "object",
86
+ "properties": {
87
+ "body": {
88
+ "type": "object",
89
+ "description": "Configuration body: { items: [{ modelId, quantity, scale? }] }."
64
90
  }
65
91
  },
66
- "required": [
67
- "modelId"
68
- ]
92
+ "required": ["body"]
69
93
  }
70
94
  },
71
95
  {
72
- "name": "configuration_create",
73
- "description": "Create a configuration for a 3D model with material and quantity",
96
+ "name": "get_configuration",
97
+ "description": "Get a Craftcloud configuration by id.",
74
98
  "method": "GET",
75
- "path": "/configuration-create",
99
+ "path": "/v5/configuration/{configurationId}",
100
+ "input_schema": {
101
+ "type": "object",
102
+ "properties": {
103
+ "configurationId": { "type": "string" }
104
+ },
105
+ "required": ["configurationId"]
106
+ }
107
+ },
108
+ {
109
+ "name": "create_price_request",
110
+ "description": "Request Craftcloud quotes for one or more model ids, country, currency, and optional material/vendor filters.",
111
+ "method": "POST",
112
+ "path": "/v5/price",
113
+ "body_root_param": "body",
76
114
  "input_schema": {
77
115
  "type": "object",
78
116
  "properties": {
79
- "modelId": {
80
- "type": "string",
81
- "description": "The model ID to configure"
82
- },
83
- "quantity": {
84
- "type": "number",
85
- "description": "Quantity to print (default: 1)"
86
- },
87
- "currency": {
88
- "type": "string",
89
- "description": "Currency code (USD, EUR, GBP, etc.)",
90
- "enum": [
91
- "USD",
92
- "EUR",
93
- "GBP",
94
- "CAD",
95
- "AUD",
96
- "CHF",
97
- "NOK",
98
- "JPY",
99
- "ILS"
100
- ]
101
- },
102
- "countryCode": {
103
- "type": "string",
104
- "description": "ISO 3166-1 alpha-2 country code"
117
+ "body": {
118
+ "type": "object",
119
+ "description": "Price body: { currency, countryCode, models: [{ modelId, quantity, scale? }], materialConfigIds?, vendorIds?, cartId?, refresh?, topMaterialConfigsOnly? }."
105
120
  }
106
121
  },
107
- "required": [
108
- "modelId"
109
- ]
122
+ "required": ["body"]
110
123
  }
111
124
  },
112
125
  {
113
- "name": "configuration_get",
114
- "description": "Get a configuration by ID from Craftcloud",
126
+ "name": "get_price",
127
+ "description": "Retrieve prices for a Craftcloud price request id.",
115
128
  "method": "GET",
116
- "path": "/configuration-get",
129
+ "path": "/v5/price/{priceId}",
117
130
  "input_schema": {
118
131
  "type": "object",
119
132
  "properties": {
120
- "configurationId": {
121
- "type": "string",
122
- "description": "The configuration ID"
123
- }
133
+ "priceId": { "type": "string" }
124
134
  },
125
- "required": [
126
- "configurationId"
127
- ]
135
+ "required": ["priceId"]
128
136
  }
129
137
  },
130
138
  {
131
- "name": "price_create",
132
- "description": "Create a price request to get quotes from multiple vendors",
139
+ "name": "get_grouped_prices",
140
+ "description": "Retrieve prices for a Craftcloud price request grouped by vendor.",
133
141
  "method": "GET",
134
- "path": "/price-create",
142
+ "path": "/v5/price/{priceId}/grouped",
135
143
  "input_schema": {
136
144
  "type": "object",
137
145
  "properties": {
138
- "modelId": {
139
- "type": "string",
140
- "description": "The model ID to price"
141
- },
142
- "quantity": {
143
- "type": "number",
144
- "description": "Quantity to print (default: 1)"
145
- },
146
- "currency": {
147
- "type": "string",
148
- "description": "Currency code"
149
- },
150
- "countryCode": {
151
- "type": "string",
152
- "description": "ISO country code for shipping"
153
- }
146
+ "priceId": { "type": "string" }
154
147
  },
155
- "required": [
156
- "modelId"
157
- ]
148
+ "required": ["priceId"]
158
149
  }
159
150
  },
160
151
  {
161
- "name": "price_get",
162
- "description": "Get prices for a price request ID",
152
+ "name": "create_multi_model_offer",
153
+ "description": "Create a multi-model offer using the same body shape as a price request.",
154
+ "method": "POST",
155
+ "path": "/v5/multi-model-offer",
156
+ "body_root_param": "body",
157
+ "input_schema": {
158
+ "type": "object",
159
+ "properties": {
160
+ "body": { "type": "object", "description": "Multi-model offer request body." }
161
+ },
162
+ "required": ["body"]
163
+ }
164
+ },
165
+ {
166
+ "name": "get_multi_model_offer",
167
+ "description": "Get a multi-model offer by price id.",
163
168
  "method": "GET",
164
- "path": "/price-get",
169
+ "path": "/v5/multi-model-offer/{priceId}",
165
170
  "input_schema": {
166
171
  "type": "object",
167
172
  "properties": {
168
- "priceId": {
169
- "type": "string",
170
- "description": "The price request ID"
171
- }
173
+ "priceId": { "type": "string" }
172
174
  },
173
- "required": [
174
- "priceId"
175
- ]
175
+ "required": ["priceId"]
176
176
  }
177
177
  },
178
178
  {
179
- "name": "price_grouped",
180
- "description": "Get prices grouped by vendor for easy comparison",
179
+ "name": "get_multi_model_offer_stats",
180
+ "description": "Get quote statistics for each model configuration in a multi-model offer.",
181
181
  "method": "GET",
182
- "path": "/price-grouped",
182
+ "path": "/v5/multi-model-offer/{priceId}/model-config-stats",
183
183
  "input_schema": {
184
184
  "type": "object",
185
185
  "properties": {
186
- "priceId": {
187
- "type": "string",
188
- "description": "The price request ID"
189
- }
186
+ "priceId": { "type": "string" }
190
187
  },
191
- "required": [
192
- "priceId"
193
- ]
188
+ "required": ["priceId"]
194
189
  }
195
190
  },
196
191
  {
197
- "name": "cart_create",
198
- "description": "Create a shopping cart with configured items",
192
+ "name": "lookup_multi_model_quote",
193
+ "description": "Lookup a multi-model quote.",
194
+ "method": "POST",
195
+ "path": "/v5/multi-model-quote/lookup",
196
+ "body_root_param": "body",
197
+ "input_schema": {
198
+ "type": "object",
199
+ "properties": {
200
+ "body": { "type": "object", "description": "Craftcloud quote lookup payload." }
201
+ },
202
+ "required": ["body"]
203
+ }
204
+ },
205
+ {
206
+ "name": "create_offer",
207
+ "description": "Create an offer.",
208
+ "method": "POST",
209
+ "path": "/v5/offer",
210
+ "body_root_param": "body",
211
+ "input_schema": {
212
+ "type": "object",
213
+ "properties": {
214
+ "body": { "type": "object", "description": "Craftcloud create-offer payload." }
215
+ },
216
+ "required": ["body"]
217
+ }
218
+ },
219
+ {
220
+ "name": "get_offer_cart",
221
+ "description": "Return a cart object for an offer id.",
199
222
  "method": "GET",
200
- "path": "/cart-create",
223
+ "path": "/v5/offer/{offerId}/cart",
201
224
  "input_schema": {
202
225
  "type": "object",
203
226
  "properties": {
204
- "items": {
205
- "type": "array",
206
- "description": "Array of cart items with modelId, quantity, etc.",
207
- "items": {
208
- "type": "object"
209
- }
210
- },
211
- "currency": {
212
- "type": "string",
213
- "description": "Currency code"
214
- },
215
- "countryCode": {
216
- "type": "string",
217
- "description": "ISO country code"
218
- }
227
+ "offerId": { "type": "string" }
219
228
  },
220
- "required": [
221
- "items"
222
- ]
229
+ "required": ["offerId"]
223
230
  }
224
231
  },
225
232
  {
226
- "name": "order_create",
227
- "description": "Create an order from a cart",
233
+ "name": "get_offer_configuration",
234
+ "description": "Return the model configuration for an offer id.",
228
235
  "method": "GET",
229
- "path": "/order-create",
236
+ "path": "/v5/offer/{offerId}/configuration",
230
237
  "input_schema": {
231
238
  "type": "object",
232
239
  "properties": {
233
- "cartId": {
234
- "type": "string",
235
- "description": "The cart ID to order"
236
- },
237
- "email": {
238
- "type": "string",
239
- "description": "Customer email"
240
- },
241
- "firstName": {
242
- "type": "string",
243
- "description": "Customer first name"
244
- },
245
- "lastName": {
246
- "type": "string",
247
- "description": "Customer last name"
248
- },
249
- "company": {
250
- "type": "string",
251
- "description": "Company name"
252
- },
253
- "address": {
254
- "type": "string",
255
- "description": "Shipping address"
256
- },
257
- "city": {
258
- "type": "string",
259
- "description": "City"
260
- },
261
- "postalCode": {
262
- "type": "string",
263
- "description": "Postal/ZIP code"
264
- },
265
- "countryCode": {
266
- "type": "string",
267
- "description": "ISO country code"
268
- },
269
- "phone": {
270
- "type": "string",
271
- "description": "Phone number"
240
+ "offerId": { "type": "string" }
241
+ },
242
+ "required": ["offerId"]
243
+ }
244
+ },
245
+ {
246
+ "name": "create_cart",
247
+ "description": "Create a cart from shipping ids, currency, quote ids, and optional notes/reference/voucher.",
248
+ "method": "POST",
249
+ "path": "/v5/cart",
250
+ "body_root_param": "body",
251
+ "input_schema": {
252
+ "type": "object",
253
+ "properties": {
254
+ "body": {
255
+ "type": "object",
256
+ "description": "Cart body: { shippingIds, currency, quotes: [{ id, types?, note? }], note?, customerReference?, voucherCode? }."
272
257
  }
273
258
  },
274
- "required": [
275
- "cartId"
276
- ]
259
+ "required": ["body"]
277
260
  }
278
261
  },
279
262
  {
280
- "name": "order_status",
281
- "description": "Get the status of an order from Craftcloud",
282
- "method": "GET",
283
- "path": "/order-status",
263
+ "name": "create_order",
264
+ "description": "Create an order from a cart id and user shipping/billing data.",
265
+ "method": "POST",
266
+ "path": "/v5/order",
267
+ "body_root_param": "body",
284
268
  "input_schema": {
285
269
  "type": "object",
286
270
  "properties": {
287
- "orderId": {
288
- "type": "string",
289
- "description": "The order ID"
271
+ "body": {
272
+ "type": "object",
273
+ "description": "Order body: { cartId, user: { emailAddress, shipping, billing }, gaClientId?, customsInformation?, appId? }."
290
274
  }
291
275
  },
292
- "required": [
293
- "orderId"
294
- ]
276
+ "required": ["body"]
277
+ }
278
+ },
279
+ {
280
+ "name": "get_order",
281
+ "description": "Get a Craftcloud order by id.",
282
+ "method": "GET",
283
+ "path": "/v5/order/{orderId}",
284
+ "input_schema": {
285
+ "type": "object",
286
+ "properties": {
287
+ "orderId": { "type": "string" }
288
+ },
289
+ "required": ["orderId"]
290
+ }
291
+ },
292
+ {
293
+ "name": "get_order_status",
294
+ "description": "Get Craftcloud order status.",
295
+ "method": "GET",
296
+ "path": "/v5/order/{orderId}/status",
297
+ "input_schema": {
298
+ "type": "object",
299
+ "properties": {
300
+ "orderId": { "type": "string" }
301
+ },
302
+ "required": ["orderId"]
303
+ }
304
+ },
305
+ {
306
+ "name": "get_order_configuration",
307
+ "description": "Return the quote configuration for an order id.",
308
+ "method": "GET",
309
+ "path": "/v5/order/{orderId}/configuration",
310
+ "input_schema": {
311
+ "type": "object",
312
+ "properties": {
313
+ "orderId": { "type": "string" }
314
+ },
315
+ "required": ["orderId"]
316
+ }
317
+ },
318
+ {
319
+ "name": "validate_address",
320
+ "description": "Validate a shipping or billing address.",
321
+ "method": "POST",
322
+ "path": "/v5/address-validation",
323
+ "body_root_param": "body",
324
+ "input_schema": {
325
+ "type": "object",
326
+ "properties": {
327
+ "body": { "type": "object", "description": "Address validation payload." }
328
+ },
329
+ "required": ["body"]
330
+ }
331
+ },
332
+ {
333
+ "name": "validate_vat",
334
+ "description": "Validate VAT information.",
335
+ "method": "POST",
336
+ "path": "/v5/vat-validation",
337
+ "body_root_param": "body",
338
+ "input_schema": {
339
+ "type": "object",
340
+ "properties": {
341
+ "body": { "type": "object", "description": "VAT validation payload." }
342
+ },
343
+ "required": ["body"]
295
344
  }
296
345
  }
297
346
  ]