@apteva/integrations 0.15.10 → 0.15.11

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 (48) hide show
  1. package/dist/http-executor.d.ts.map +1 -1
  2. package/dist/http-executor.js +62 -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 +4 -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/gladia.json +158 -0
  20. package/src/apps/gmail.json +2 -5
  21. package/src/apps/gumroad.json +569 -0
  22. package/src/apps/imaterialise.json +171 -262
  23. package/src/apps/jlcpcb.json +43 -0
  24. package/src/apps/jungle-scout.json +166 -0
  25. package/src/apps/ko-fi.json +34 -0
  26. package/src/apps/lemon-squeezy.json +270 -0
  27. package/src/apps/mollie.json +219 -0
  28. package/src/apps/paddle.json +199 -9
  29. package/src/apps/payhip.json +162 -0
  30. package/src/apps/paystack.json +207 -0
  31. package/src/apps/pipedrive.json +221 -212
  32. package/src/apps/razorpay.json +207 -0
  33. package/src/apps/ringover.json +69 -0
  34. package/src/apps/runpod.json +727 -0
  35. package/src/apps/salesforce-crm.json +192 -233
  36. package/src/apps/sculpteo.json +98 -180
  37. package/src/apps/segpay.json +215 -0
  38. package/src/apps/shapeways.json +114 -136
  39. package/src/apps/slant3d.json +260 -168
  40. package/src/apps/soniox.json +194 -0
  41. package/src/apps/speechmatics.json +167 -0
  42. package/src/apps/stripe.json +1 -0
  43. package/src/apps/surfer.json +511 -0
  44. package/src/apps/twitter-api.json +14 -1
  45. package/src/apps/verotel.json +124 -0
  46. package/src/apps/whop.json +364 -0
  47. package/src/apps/zendesk-sell.json +248 -0
  48. package/src/apps/zendesk.json +190 -259
@@ -1,348 +1,257 @@
1
1
  {
2
2
  "slug": "imaterialise",
3
- "name": "i.materialise",
4
- "description": "MCP server for i.materialise - professional 3D printing service with 25+ years experience, 100+ materials",
5
- "logo": "https://www.google.com/s2/favicons?domain=i.materialise.com&sz=128",
6
- "categories": [
7
- "3d-printing",
8
- "manufacturing",
9
- "professional",
10
- "materialise",
11
- "prototyping"
12
- ],
13
- "base_url": "https://i.materialise.com/api",
3
+ "name": "Materialise OnSite",
4
+ "description": "Materialise OnSite 3D printing API for technology/material lookup, products, pricing, quotations, addresses, and order placement. i.materialise has moved into the Materialise OnSite service.",
5
+ "logo": "https://www.google.com/s2/favicons?domain=materialise.com&sz=128",
6
+ "categories": ["3d-printing", "manufacturing", "professional", "materialise", "onsite"],
7
+ "base_url": "https://api.onsite.materialise.com",
14
8
  "auth": {
15
- "types": [
16
- "bearer"
17
- ],
9
+ "types": ["bearer"],
18
10
  "headers": {
19
- "Authorization": "Bearer {{token}}"
11
+ "Authorization": "Bearer {{access_token}}"
20
12
  },
21
13
  "credential_fields": [
22
14
  {
23
- "name": "api_key",
24
- "label": "Api_key",
25
- "description": "Your i.materialise API code (request from i.materialise after registration)"
26
- },
27
- {
28
- "name": "tool_id",
29
- "label": "Tool_id",
30
- "description": "Your i.materialise tool ID (provided with API code)"
15
+ "name": "access_token",
16
+ "label": "Access Token",
17
+ "description": "Materialise OnSite OAuth access token. Get it from https://auth.onsite.materialise.com/connect/token using your client credentials."
31
18
  }
32
19
  ]
33
20
  },
34
21
  "tools": [
35
22
  {
36
23
  "name": "upload_model",
37
- "description": "Upload a 3D model to i.materialise for analysis and pricing",
24
+ "description": "Upload a 3D model file to Materialise OnSite and receive a model id. The file is sent as multipart/form-data.",
38
25
  "method": "POST",
39
- "path": "/upload-model",
26
+ "path": "/v1/models",
27
+ "multipart_form": {
28
+ "file_fields": {
29
+ "file": "file"
30
+ },
31
+ "field_names": []
32
+ },
40
33
  "input_schema": {
41
34
  "type": "object",
42
35
  "properties": {
43
- "file": {
44
- "type": "string",
45
- "description": "Base64 encoded 3D model file"
46
- },
47
- "fileName": {
48
- "type": "string",
49
- "description": "Name of the file"
50
- },
51
- "fileURL": {
52
- "type": "string",
53
- "description": "URL to the 3D model file (alternative to base64)"
54
- }
55
- }
36
+ "file": { "type": "string", "description": "3D model bytes as base64, data URL, or raw string." },
37
+ "filename": { "type": "string", "description": "Filename with extension. Materialise supports common 3D model formats on the OnSite API." }
38
+ },
39
+ "required": ["file", "filename"]
56
40
  }
57
41
  },
58
42
  {
59
- "name": "pricing_parameters",
60
- "description": "Get pricing by providing model parameters (dimensions, volume, surface)",
43
+ "name": "list_technologies",
44
+ "description": "List Materialise OnSite technologies, materials, finishings, and colors. Use the returned ids to create products.",
61
45
  "method": "GET",
62
- "path": "/pricing-parameters",
46
+ "path": "/v1/technologies",
47
+ "input_schema": { "type": "object", "properties": {} }
48
+ },
49
+ {
50
+ "name": "get_model",
51
+ "description": "Get dimensions, volume, surface area, filename, and status for an uploaded model.",
52
+ "method": "GET",
53
+ "path": "/v1/models/{modelId}",
63
54
  "input_schema": {
64
55
  "type": "object",
65
56
  "properties": {
66
- "materialId": {
67
- "type": "string",
68
- "description": "Material ID to price for"
69
- },
70
- "finishId": {
71
- "type": "string",
72
- "description": "Finish ID"
73
- },
74
- "xDimMm": {
75
- "type": "number",
76
- "description": "X dimension in mm"
77
- },
78
- "yDimMm": {
79
- "type": "number",
80
- "description": "Y dimension in mm"
81
- },
82
- "zDimMm": {
83
- "type": "number",
84
- "description": "Z dimension in mm"
85
- },
86
- "volumeMm3": {
87
- "type": "number",
88
- "description": "Volume in mm³"
89
- },
90
- "surfaceMm2": {
91
- "type": "number",
92
- "description": "Surface area in mm²"
93
- },
94
- "quantity": {
95
- "type": "number",
96
- "description": "Quantity to price"
97
- },
98
- "currency": {
99
- "type": "string",
100
- "description": "Currency code (USD, EUR, GBP)"
101
- }
57
+ "modelId": { "type": "string", "description": "Materialise model UUID." }
102
58
  },
103
- "required": [
104
- "materialId"
105
- ]
59
+ "required": ["modelId"]
106
60
  }
107
61
  },
108
62
  {
109
- "name": "pricing_model",
110
- "description": "Get pricing for an uploaded model by its ID",
63
+ "name": "get_model_status",
64
+ "description": "Check processing status for an uploaded model.",
111
65
  "method": "GET",
112
- "path": "/pricing-model",
66
+ "path": "/v1/models/{modelId}/status",
113
67
  "input_schema": {
114
68
  "type": "object",
115
69
  "properties": {
116
- "modelId": {
117
- "type": "string",
118
- "description": "The uploaded model ID"
119
- },
120
- "materialId": {
121
- "type": "string",
122
- "description": "Material ID to price for"
123
- },
124
- "finishId": {
125
- "type": "string",
126
- "description": "Finish ID"
127
- },
128
- "quantity": {
129
- "type": "number",
130
- "description": "Quantity to price"
131
- },
132
- "currency": {
133
- "type": "string",
134
- "description": "Currency code"
135
- }
70
+ "modelId": { "type": "string", "description": "Materialise model UUID." }
136
71
  },
137
- "required": [
138
- "modelId",
139
- "materialId"
140
- ]
72
+ "required": ["modelId"]
141
73
  }
142
74
  },
143
75
  {
144
- "name": "materials_list",
145
- "description": "Get the catalog of available materials and their properties (public API)",
146
- "method": "GET",
147
- "path": "/materials-list",
76
+ "name": "create_product",
77
+ "description": "Create a printable product from a processed model and selected technology/material/finishing/color ids.",
78
+ "method": "POST",
79
+ "path": "/v1/products",
148
80
  "input_schema": {
149
81
  "type": "object",
150
82
  "properties": {
151
- "currency": {
152
- "type": "string",
153
- "description": "Currency for prices"
154
- }
155
- }
83
+ "modelId": { "type": "string" },
84
+ "technologyId": { "type": "string" },
85
+ "materialId": { "type": "string" },
86
+ "finishingId": { "type": "string" },
87
+ "colorId": { "type": "string" },
88
+ "keepPartOrientation": { "type": "boolean" },
89
+ "doNotHollow": { "type": "boolean" }
90
+ },
91
+ "required": ["modelId", "technologyId", "materialId"]
156
92
  }
157
93
  },
158
94
  {
159
- "name": "cart_item_create",
160
- "description": "Create a cart item for ordering",
95
+ "name": "get_product_services",
96
+ "description": "Get available production services for a product, such as default or FastLane.",
161
97
  "method": "GET",
162
- "path": "/cart-item-create",
98
+ "path": "/v1/products/{productId}/services",
163
99
  "input_schema": {
164
100
  "type": "object",
165
101
  "properties": {
166
- "modelId": {
167
- "type": "string",
168
- "description": "The model ID"
169
- },
170
- "materialId": {
171
- "type": "string",
172
- "description": "Material ID"
173
- },
174
- "finishId": {
175
- "type": "string",
176
- "description": "Finish ID"
177
- },
178
- "quantity": {
179
- "type": "number",
180
- "description": "Quantity (default: 1)"
181
- },
182
- "scale": {
183
- "type": "number",
184
- "description": "Scale factor (default: 1)"
185
- },
186
- "currency": {
187
- "type": "string",
188
- "description": "Currency code"
189
- }
102
+ "productId": { "type": "string" }
190
103
  },
191
- "required": [
192
- "modelId",
193
- "materialId"
194
- ]
104
+ "required": ["productId"]
195
105
  }
196
106
  },
197
107
  {
198
- "name": "cart_create",
199
- "description": "Create a cart with cart items",
200
- "method": "GET",
201
- "path": "/cart-create",
108
+ "name": "get_product_price",
109
+ "description": "Price a product for a quantity and currency.",
110
+ "method": "POST",
111
+ "path": "/v1/products/{productId}/price",
202
112
  "input_schema": {
203
113
  "type": "object",
204
114
  "properties": {
205
- "cartItemIds": {
206
- "type": "array",
207
- "description": "Array of cart item IDs",
208
- "items": {
209
- "type": "string"
210
- }
211
- },
212
- "shipmentCountryCode": {
213
- "type": "string",
214
- "description": "ISO country code for shipping"
215
- },
216
- "currency": {
217
- "type": "string",
218
- "description": "Currency code"
219
- }
115
+ "productId": { "type": "string" },
116
+ "quantity": { "type": "integer", "minimum": 1 },
117
+ "currency": { "type": "string", "enum": ["EUR", "USD", "GBP", "PLN"] }
220
118
  },
221
- "required": [
222
- "cartItemIds"
223
- ]
119
+ "required": ["productId", "quantity", "currency"]
224
120
  }
225
121
  },
226
122
  {
227
- "name": "cart_checkout",
228
- "description": "Checkout a cart and place the order",
229
- "method": "GET",
230
- "path": "/cart-checkout",
123
+ "name": "create_delivery_address",
124
+ "description": "Create a delivery address and receive an address id usable on quotations.",
125
+ "method": "POST",
126
+ "path": "/v1/delivery-addresses",
231
127
  "input_schema": {
232
128
  "type": "object",
233
129
  "properties": {
234
- "cartId": {
235
- "type": "string",
236
- "description": "The cart ID"
237
- },
238
- "email": {
239
- "type": "string",
240
- "description": "Customer email"
241
- },
242
- "firstName": {
243
- "type": "string",
244
- "description": "First name"
245
- },
246
- "lastName": {
247
- "type": "string",
248
- "description": "Last name"
249
- },
250
- "company": {
251
- "type": "string",
252
- "description": "Company name"
253
- },
254
- "phone": {
255
- "type": "string",
256
- "description": "Phone number"
257
- },
258
- "address1": {
259
- "type": "string",
260
- "description": "Address line 1"
261
- },
262
- "address2": {
263
- "type": "string",
264
- "description": "Address line 2"
265
- },
266
- "city": {
267
- "type": "string",
268
- "description": "City"
269
- },
270
- "stateCode": {
271
- "type": "string",
272
- "description": "State code"
273
- },
274
- "postalCode": {
275
- "type": "string",
276
- "description": "Postal/ZIP code"
277
- },
278
- "countryCode": {
279
- "type": "string",
280
- "description": "ISO country code"
281
- },
282
- "shippingMethodId": {
283
- "type": "string",
284
- "description": "Shipping method ID"
285
- }
130
+ "company": { "type": "string" },
131
+ "address1": { "type": "string" },
132
+ "address2": { "type": "string" },
133
+ "address3": { "type": "string" },
134
+ "city": { "type": "string" },
135
+ "zip": { "type": "string" },
136
+ "state": { "type": "string" },
137
+ "countryIsoCode": { "type": "string" },
138
+ "firstName": { "type": "string" },
139
+ "lastName": { "type": "string" },
140
+ "phoneNumber": { "type": "string" }
286
141
  },
287
- "required": [
288
- "cartId"
289
- ]
142
+ "required": ["address1", "city", "zip", "countryIsoCode", "firstName", "lastName", "phoneNumber"]
290
143
  }
291
144
  },
292
145
  {
293
- "name": "cart_status",
294
- "description": "Get the status of a cart",
295
- "method": "GET",
296
- "path": "/cart-status",
146
+ "name": "create_quotation",
147
+ "description": "Create an empty quotation in a currency. Add items and addresses before ordering.",
148
+ "method": "POST",
149
+ "path": "/v1/quotations",
297
150
  "input_schema": {
298
151
  "type": "object",
299
152
  "properties": {
300
- "cartId": {
301
- "type": "string",
302
- "description": "The cart ID"
303
- }
153
+ "refNumber": { "type": "string" },
154
+ "currency": { "type": "string", "enum": ["EUR", "USD", "GBP", "PLN"] }
304
155
  },
305
- "required": [
306
- "cartId"
307
- ]
156
+ "required": ["currency"]
308
157
  }
309
158
  },
310
159
  {
311
- "name": "order_status",
312
- "description": "Get the status of an order",
160
+ "name": "list_quotations",
161
+ "description": "List active quotations.",
313
162
  "method": "GET",
314
- "path": "/order-status",
163
+ "path": "/v1/quotations",
164
+ "query_params": ["$skip", "$top"],
315
165
  "input_schema": {
316
166
  "type": "object",
317
167
  "properties": {
318
- "orderId": {
319
- "type": "string",
320
- "description": "The order ID"
321
- },
322
- "orderNumber": {
323
- "type": "string",
324
- "description": "The order number (alternative to orderId)"
325
- }
168
+ "$skip": { "type": "integer" },
169
+ "$top": { "type": "integer" }
326
170
  }
327
171
  }
328
172
  },
329
173
  {
330
- "name": "order_cancel",
331
- "description": "Cancel an order (if processing hasn't started)",
174
+ "name": "get_quotation",
175
+ "description": "Get quotation details including items, totals, status, transport cost, and tracking number when available.",
332
176
  "method": "GET",
333
- "path": "/order-cancel",
177
+ "path": "/v1/quotations/{quotationId}",
334
178
  "input_schema": {
335
179
  "type": "object",
336
180
  "properties": {
337
- "orderId": {
338
- "type": "string",
339
- "description": "The order ID"
340
- },
341
- "orderNumber": {
342
- "type": "string",
343
- "description": "The order number (alternative to orderId)"
344
- }
345
- }
181
+ "quotationId": { "type": "integer" }
182
+ },
183
+ "required": ["quotationId"]
184
+ }
185
+ },
186
+ {
187
+ "name": "delete_quotation",
188
+ "description": "Delete an active quotation that has not already been ordered.",
189
+ "method": "DELETE",
190
+ "path": "/v1/quotations/{quotationId}",
191
+ "input_schema": {
192
+ "type": "object",
193
+ "properties": {
194
+ "quotationId": { "type": "integer" }
195
+ },
196
+ "required": ["quotationId"]
197
+ }
198
+ },
199
+ {
200
+ "name": "add_quotation_addresses",
201
+ "description": "Assign delivery and invoice address ids to a quotation.",
202
+ "method": "POST",
203
+ "path": "/v1/quotations/{quotationId}/addresses",
204
+ "input_schema": {
205
+ "type": "object",
206
+ "properties": {
207
+ "quotationId": { "type": "integer" },
208
+ "deliveryAddressId": { "type": "string" },
209
+ "invoiceAddressId": { "type": "string" }
210
+ },
211
+ "required": ["quotationId", "deliveryAddressId", "invoiceAddressId"]
212
+ }
213
+ },
214
+ {
215
+ "name": "add_quotation_item",
216
+ "description": "Add a product and quantity to a quotation.",
217
+ "method": "POST",
218
+ "path": "/v1/quotations/{quotationId}/items",
219
+ "input_schema": {
220
+ "type": "object",
221
+ "properties": {
222
+ "quotationId": { "type": "integer" },
223
+ "productId": { "type": "string" },
224
+ "quantity": { "type": "integer", "minimum": 1 },
225
+ "service": { "type": "string", "enum": ["Default", "FastLane"] }
226
+ },
227
+ "required": ["quotationId", "productId", "quantity"]
228
+ }
229
+ },
230
+ {
231
+ "name": "delete_quotation_item",
232
+ "description": "Remove an item from a quotation.",
233
+ "method": "DELETE",
234
+ "path": "/v1/quotations/{quotationId}/items/{quotationItemId}",
235
+ "input_schema": {
236
+ "type": "object",
237
+ "properties": {
238
+ "quotationId": { "type": "integer" },
239
+ "quotationItemId": { "type": "string" }
240
+ },
241
+ "required": ["quotationId", "quotationItemId"]
242
+ }
243
+ },
244
+ {
245
+ "name": "place_order",
246
+ "description": "Place an order for a quotation. Invoice ordering must be enabled on the Materialise account.",
247
+ "method": "POST",
248
+ "path": "/v1/quotations/{quotationId}/order",
249
+ "input_schema": {
250
+ "type": "object",
251
+ "properties": {
252
+ "quotationId": { "type": "integer" }
253
+ },
254
+ "required": ["quotationId"]
346
255
  }
347
256
  }
348
257
  ]
@@ -0,0 +1,43 @@
1
+ {
2
+ "slug": "jlcpcb",
3
+ "name": "JLCPCB / JLC3DP",
4
+ "description": "JLCPCB API Platform and JLC3DP partner API discovery. Public pages confirm PCB, stencil, component, and 3D printing APIs, but detailed 3D printing quote/order endpoints require partner approval from JLCPCB/JLC3DP.",
5
+ "logo": "https://www.google.com/s2/favicons?domain=jlcpcb.com&sz=128",
6
+ "categories": ["manufacturing", "pcb", "3d-printing", "jlcpcb", "jlc3dp"],
7
+ "base_url": "https://api.jlcpcb.com",
8
+ "auth": {
9
+ "types": ["api_key"],
10
+ "headers": {},
11
+ "credential_fields": [
12
+ {
13
+ "name": "api_key",
14
+ "label": "Partner API Key",
15
+ "required": false,
16
+ "description": "JLCPCB/JLC3DP partner API credential. Leave blank until JLCPCB grants API access and provides endpoint-level documentation."
17
+ }
18
+ ]
19
+ },
20
+ "tools": [
21
+ {
22
+ "name": "get_api_platform_overview",
23
+ "description": "Fetch the public JLCPCB API Platform overview. Use this to confirm available API product families and application requirements.",
24
+ "method": "GET",
25
+ "path": "/",
26
+ "input_schema": { "type": "object", "properties": {} }
27
+ },
28
+ {
29
+ "name": "get_jlc3dp_api_application_info",
30
+ "description": "Fetch the public JLC3DP API application article. It describes Pricing API and Ordering API scope, supported 3D file formats, partner approval, and support contact.",
31
+ "method": "GET",
32
+ "path": "https://jlc3dp.com/help/article/jlc3dp-api",
33
+ "input_schema": { "type": "object", "properties": {} }
34
+ },
35
+ {
36
+ "name": "get_jlcpcb_api_help_catalog",
37
+ "description": "Fetch the JLCPCB API help catalog. Use this to find currently published API help articles before wiring any partner-specific endpoint.",
38
+ "method": "GET",
39
+ "path": "https://jlcpcb.com/help/catalog/213-JLCPCB-API",
40
+ "input_schema": { "type": "object", "properties": {} }
41
+ }
42
+ ]
43
+ }