@apteva/integrations 0.15.9 → 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 (60) 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/apify.json +168 -0
  11. package/src/apps/aws-ses.json +1 -1
  12. package/src/apps/bookvault.json +309 -0
  13. package/src/apps/braintree.json +53 -0
  14. package/src/apps/brightdata.json +22 -1
  15. package/src/apps/browse-ai.json +243 -5
  16. package/src/apps/browserbase.json +41 -11
  17. package/src/apps/browserless.json +101 -0
  18. package/src/apps/bunny-stream.json +50 -28
  19. package/src/apps/ccbill.json +142 -0
  20. package/src/apps/close.json +238 -301
  21. package/src/apps/craftcloud.json +251 -202
  22. package/src/apps/dataforseo.json +1700 -2
  23. package/src/apps/deepgram.json +288 -1
  24. package/src/apps/digitalocean.json +53 -0
  25. package/src/apps/elevenlabs.json +292 -0
  26. package/src/apps/firecrawl.json +111 -0
  27. package/src/apps/gladia.json +158 -0
  28. package/src/apps/gmail.json +2 -5
  29. package/src/apps/gumroad.json +569 -0
  30. package/src/apps/imaterialise.json +171 -262
  31. package/src/apps/ingram-coresource.json +119 -0
  32. package/src/apps/jlcpcb.json +43 -0
  33. package/src/apps/jungle-scout.json +166 -0
  34. package/src/apps/ko-fi.json +34 -0
  35. package/src/apps/lemon-squeezy.json +270 -0
  36. package/src/apps/lulu-print.json +266 -0
  37. package/src/apps/mollie.json +219 -0
  38. package/src/apps/paddle.json +199 -9
  39. package/src/apps/payhip.json +162 -0
  40. package/src/apps/paystack.json +207 -0
  41. package/src/apps/pipedrive.json +221 -212
  42. package/src/apps/publishdrive.json +132 -0
  43. package/src/apps/razorpay.json +207 -0
  44. package/src/apps/ringover.json +69 -0
  45. package/src/apps/runpod.json +727 -0
  46. package/src/apps/salesforce-crm.json +192 -233
  47. package/src/apps/sculpteo.json +98 -180
  48. package/src/apps/segpay.json +215 -0
  49. package/src/apps/shapeways.json +114 -136
  50. package/src/apps/slant3d.json +260 -168
  51. package/src/apps/soniox.json +194 -0
  52. package/src/apps/speechmatics.json +167 -0
  53. package/src/apps/streetlib.json +60 -0
  54. package/src/apps/stripe.json +1 -0
  55. package/src/apps/surfer.json +511 -0
  56. package/src/apps/twitter-api.json +14 -1
  57. package/src/apps/verotel.json +124 -0
  58. package/src/apps/whop.json +364 -0
  59. package/src/apps/zendesk-sell.json +248 -0
  60. package/src/apps/zendesk.json +190 -259
@@ -0,0 +1,266 @@
1
+ {
2
+ "slug": "lulu-print",
3
+ "name": "Lulu Print API",
4
+ "description": "Lulu Print API for print-on-demand validation, pricing, shipping options, print jobs, status, cancellation, and webhooks.",
5
+ "logo": "https://www.google.com/s2/favicons?domain=lulu.com&sz=128",
6
+ "categories": ["books", "print-on-demand", "publishing", "fulfillment", "shipping"],
7
+ "base_url": "https://api.lulu.com",
8
+ "auth": {
9
+ "types": ["bearer", "basic"],
10
+ "headers": {
11
+ "Authorization": "Bearer {{token}}",
12
+ "Accept": "application/json"
13
+ },
14
+ "credential_fields": [
15
+ {
16
+ "name": "token",
17
+ "label": "Bearer access token",
18
+ "description": "OAuth access token from Lulu's client-credentials token endpoint."
19
+ },
20
+ {
21
+ "name": "basic",
22
+ "label": "Basic auth value",
23
+ "description": "Base64 client_key:client_secret value used only with lulu_token_create.",
24
+ "required": false
25
+ }
26
+ ]
27
+ },
28
+ "tools": [
29
+ {
30
+ "name": "token_create",
31
+ "description": "Create a Lulu OAuth token using Basic client_key:client_secret credentials. Store the returned access_token as this connection's bearer token.",
32
+ "method": "POST",
33
+ "path": "https://api.lulu.com/auth/realms/glasstree/protocol/openid-connect/token",
34
+ "headers": {
35
+ "Authorization": "Basic {{basic}}",
36
+ "Content-Type": "application/x-www-form-urlencoded"
37
+ },
38
+ "input_schema": {
39
+ "type": "object",
40
+ "properties": {
41
+ "grant_type": { "type": "string", "description": "Use client_credentials." }
42
+ },
43
+ "required": ["grant_type"]
44
+ }
45
+ },
46
+ {
47
+ "name": "calculate_print_job_cost",
48
+ "description": "Create a Print-Job cost calculation.",
49
+ "method": "POST",
50
+ "path": "/print-job-cost-calculations/",
51
+ "body_root_param": "body",
52
+ "input_schema": {
53
+ "type": "object",
54
+ "properties": {
55
+ "body": { "type": "object", "description": "Lulu print-job cost calculation payload." }
56
+ },
57
+ "required": ["body"]
58
+ }
59
+ },
60
+ {
61
+ "name": "list_print_jobs",
62
+ "description": "Retrieve a list of Lulu Print-Jobs.",
63
+ "method": "GET",
64
+ "path": "/print-jobs/",
65
+ "query_params": ["page", "page_size", "status", "created_min", "created_max"],
66
+ "input_schema": {
67
+ "type": "object",
68
+ "properties": {
69
+ "page": { "type": "integer" },
70
+ "page_size": { "type": "integer" },
71
+ "status": { "type": "string" },
72
+ "created_min": { "type": "string" },
73
+ "created_max": { "type": "string" }
74
+ }
75
+ }
76
+ },
77
+ {
78
+ "name": "create_print_job",
79
+ "description": "Create a new Lulu Print-Job.",
80
+ "method": "POST",
81
+ "path": "/print-jobs/",
82
+ "body_root_param": "body",
83
+ "timeout_ms": 120000,
84
+ "input_schema": {
85
+ "type": "object",
86
+ "properties": {
87
+ "body": { "type": "object", "description": "Lulu Print-Job payload including line_items, shipping_address, contact_email, and external_id." }
88
+ },
89
+ "required": ["body"]
90
+ }
91
+ },
92
+ {
93
+ "name": "get_print_job",
94
+ "description": "Retrieve a single Lulu Print-Job.",
95
+ "method": "GET",
96
+ "path": "/print-jobs/{id}/",
97
+ "input_schema": {
98
+ "type": "object",
99
+ "properties": {
100
+ "id": { "type": "string" }
101
+ },
102
+ "required": ["id"]
103
+ }
104
+ },
105
+ {
106
+ "name": "get_print_job_status",
107
+ "description": "Retrieve Lulu Print-Job status.",
108
+ "method": "GET",
109
+ "path": "/print-jobs/{id}/status/",
110
+ "input_schema": {
111
+ "type": "object",
112
+ "properties": {
113
+ "id": { "type": "string" }
114
+ },
115
+ "required": ["id"]
116
+ }
117
+ },
118
+ {
119
+ "name": "cancel_print_job",
120
+ "description": "Cancel a Lulu Print-Job.",
121
+ "method": "DELETE",
122
+ "path": "/print-jobs/{id}/status/",
123
+ "input_schema": {
124
+ "type": "object",
125
+ "properties": {
126
+ "id": { "type": "string" }
127
+ },
128
+ "required": ["id"]
129
+ }
130
+ },
131
+ {
132
+ "name": "get_print_job_costs",
133
+ "description": "Retrieve costs for a Lulu Print-Job.",
134
+ "method": "GET",
135
+ "path": "/print-jobs/{id}/costs/",
136
+ "input_schema": {
137
+ "type": "object",
138
+ "properties": {
139
+ "id": { "type": "string" }
140
+ },
141
+ "required": ["id"]
142
+ }
143
+ },
144
+ {
145
+ "name": "get_shipping_options",
146
+ "description": "Retrieve shipping options for a Lulu print order.",
147
+ "method": "POST",
148
+ "path": "/shipping-options/",
149
+ "body_root_param": "body",
150
+ "input_schema": {
151
+ "type": "object",
152
+ "properties": {
153
+ "body": { "type": "object", "description": "Lulu shipping-options payload." }
154
+ },
155
+ "required": ["body"]
156
+ }
157
+ },
158
+ {
159
+ "name": "validate_interior",
160
+ "description": "Validate an interior PDF file by URL.",
161
+ "method": "POST",
162
+ "path": "/validate-interior/",
163
+ "body_root_param": "body",
164
+ "timeout_ms": 120000,
165
+ "input_schema": {
166
+ "type": "object",
167
+ "properties": {
168
+ "body": { "type": "object", "description": "Lulu validate-interior payload." }
169
+ },
170
+ "required": ["body"]
171
+ }
172
+ },
173
+ {
174
+ "name": "get_interior_validation",
175
+ "description": "Retrieve a Lulu interior file validation record.",
176
+ "method": "GET",
177
+ "path": "/validate-interior/{id}/",
178
+ "input_schema": {
179
+ "type": "object",
180
+ "properties": {
181
+ "id": { "type": "string" }
182
+ },
183
+ "required": ["id"]
184
+ }
185
+ },
186
+ {
187
+ "name": "calculate_cover_dimensions",
188
+ "description": "Calculate cover dimensions from product package and page count.",
189
+ "method": "POST",
190
+ "path": "/cover-dimensions/",
191
+ "body_root_param": "body",
192
+ "input_schema": {
193
+ "type": "object",
194
+ "properties": {
195
+ "body": { "type": "object", "description": "Lulu cover-dimensions payload." }
196
+ },
197
+ "required": ["body"]
198
+ }
199
+ },
200
+ {
201
+ "name": "validate_cover",
202
+ "description": "Validate a cover PDF file by URL.",
203
+ "method": "POST",
204
+ "path": "/validate-cover/",
205
+ "body_root_param": "body",
206
+ "timeout_ms": 120000,
207
+ "input_schema": {
208
+ "type": "object",
209
+ "properties": {
210
+ "body": { "type": "object", "description": "Lulu validate-cover payload." }
211
+ },
212
+ "required": ["body"]
213
+ }
214
+ },
215
+ {
216
+ "name": "get_cover_validation",
217
+ "description": "Retrieve a Lulu cover validation record.",
218
+ "method": "GET",
219
+ "path": "/validate-cover/{id}/",
220
+ "input_schema": {
221
+ "type": "object",
222
+ "properties": {
223
+ "id": { "type": "string" }
224
+ },
225
+ "required": ["id"]
226
+ }
227
+ },
228
+ {
229
+ "name": "list_webhooks",
230
+ "description": "Retrieve Lulu webhook subscriptions.",
231
+ "method": "GET",
232
+ "path": "/webhooks/",
233
+ "input_schema": {
234
+ "type": "object",
235
+ "properties": {}
236
+ }
237
+ },
238
+ {
239
+ "name": "create_webhook",
240
+ "description": "Subscribe to Lulu webhooks.",
241
+ "method": "POST",
242
+ "path": "/webhooks/",
243
+ "body_root_param": "body",
244
+ "input_schema": {
245
+ "type": "object",
246
+ "properties": {
247
+ "body": { "type": "object", "description": "Lulu webhook subscription payload." }
248
+ },
249
+ "required": ["body"]
250
+ }
251
+ },
252
+ {
253
+ "name": "delete_webhook",
254
+ "description": "Delete a Lulu webhook subscription.",
255
+ "method": "DELETE",
256
+ "path": "/webhooks/{id}/",
257
+ "input_schema": {
258
+ "type": "object",
259
+ "properties": {
260
+ "id": { "type": "string" }
261
+ },
262
+ "required": ["id"]
263
+ }
264
+ }
265
+ ]
266
+ }
@@ -0,0 +1,219 @@
1
+ {
2
+ "slug": "mollie",
3
+ "name": "Mollie",
4
+ "description": "Mollie payments API for hosted checkout, payments, payment links, refunds, customers, mandates, subscriptions, and payment methods.",
5
+ "logo": "https://www.google.com/s2/favicons?domain=mollie.com&sz=128",
6
+ "categories": ["payments", "checkout", "billing", "subscriptions", "commerce"],
7
+ "base_url": "https://api.mollie.com/v2",
8
+ "auth": {
9
+ "types": ["bearer"],
10
+ "headers": {
11
+ "Authorization": "Bearer {{token}}",
12
+ "Content-Type": "application/json"
13
+ },
14
+ "credential_fields": [
15
+ {
16
+ "name": "token",
17
+ "label": "API Key",
18
+ "description": "Mollie live or test API key."
19
+ }
20
+ ]
21
+ },
22
+ "tools": [
23
+ {
24
+ "name": "list_methods",
25
+ "description": "List available Mollie payment methods, optionally filtered by amount, locale, sequence type, resource, or profile.",
26
+ "method": "GET",
27
+ "path": "/methods",
28
+ "input_schema": {
29
+ "type": "object",
30
+ "properties": {
31
+ "amount": { "type": "object", "description": "Amount object, for example {\"currency\":\"EUR\",\"value\":\"10.00\"}." },
32
+ "locale": { "type": "string" },
33
+ "sequenceType": { "type": "string" },
34
+ "resource": { "type": "string" },
35
+ "profileId": { "type": "string" },
36
+ "testmode": { "type": "boolean" }
37
+ }
38
+ }
39
+ },
40
+ {
41
+ "name": "get_method",
42
+ "description": "Retrieve one Mollie payment method.",
43
+ "method": "GET",
44
+ "path": "/methods/{method_id}",
45
+ "input_schema": { "type": "object", "properties": { "method_id": { "type": "string" }, "locale": { "type": "string" }, "profileId": { "type": "string" }, "testmode": { "type": "boolean" } }, "required": ["method_id"] }
46
+ },
47
+ {
48
+ "name": "create_payment",
49
+ "description": "Create a Mollie payment. Use amount, description, redirectUrl, webhookUrl, method, metadata, customerId, sequenceType, mandateId, or profileId as needed.",
50
+ "method": "POST",
51
+ "path": "/payments",
52
+ "input_schema": {
53
+ "type": "object",
54
+ "properties": {
55
+ "amount": { "type": "object", "description": "Required amount object, for example {\"currency\":\"EUR\",\"value\":\"10.00\"}." },
56
+ "description": { "type": "string" },
57
+ "redirectUrl": { "type": "string" },
58
+ "webhookUrl": { "type": "string" },
59
+ "method": { "type": ["string", "array"] },
60
+ "metadata": { "type": "object" },
61
+ "customerId": { "type": "string" },
62
+ "sequenceType": { "type": "string" },
63
+ "mandateId": { "type": "string" },
64
+ "profileId": { "type": "string" },
65
+ "testmode": { "type": "boolean" }
66
+ },
67
+ "required": ["amount", "description"]
68
+ }
69
+ },
70
+ {
71
+ "name": "list_payments",
72
+ "description": "List Mollie payments.",
73
+ "method": "GET",
74
+ "path": "/payments",
75
+ "input_schema": { "type": "object", "properties": { "from": { "type": "string" }, "limit": { "type": "integer" }, "profileId": { "type": "string" }, "testmode": { "type": "boolean" } } }
76
+ },
77
+ {
78
+ "name": "get_payment",
79
+ "description": "Retrieve one Mollie payment.",
80
+ "method": "GET",
81
+ "path": "/payments/{payment_id}",
82
+ "input_schema": { "type": "object", "properties": { "payment_id": { "type": "string" }, "testmode": { "type": "boolean" } }, "required": ["payment_id"] }
83
+ },
84
+ {
85
+ "name": "cancel_payment",
86
+ "description": "Cancel an open Mollie payment.",
87
+ "method": "DELETE",
88
+ "path": "/payments/{payment_id}",
89
+ "input_schema": { "type": "object", "properties": { "payment_id": { "type": "string" }, "testmode": { "type": "boolean" } }, "required": ["payment_id"] }
90
+ },
91
+ {
92
+ "name": "create_refund",
93
+ "description": "Create a refund for a Mollie payment. Omit amount for a full refund when supported.",
94
+ "method": "POST",
95
+ "path": "/payments/{payment_id}/refunds",
96
+ "input_schema": { "type": "object", "properties": { "payment_id": { "type": "string" }, "amount": { "type": "object" }, "description": { "type": "string" }, "metadata": { "type": "object" }, "testmode": { "type": "boolean" } }, "required": ["payment_id"] }
97
+ },
98
+ {
99
+ "name": "list_refunds",
100
+ "description": "List refunds for a Mollie payment.",
101
+ "method": "GET",
102
+ "path": "/payments/{payment_id}/refunds",
103
+ "input_schema": { "type": "object", "properties": { "payment_id": { "type": "string" }, "from": { "type": "string" }, "limit": { "type": "integer" }, "testmode": { "type": "boolean" } }, "required": ["payment_id"] }
104
+ },
105
+ {
106
+ "name": "get_refund",
107
+ "description": "Retrieve one refund for a Mollie payment.",
108
+ "method": "GET",
109
+ "path": "/payments/{payment_id}/refunds/{refund_id}",
110
+ "input_schema": { "type": "object", "properties": { "payment_id": { "type": "string" }, "refund_id": { "type": "string" }, "testmode": { "type": "boolean" } }, "required": ["payment_id", "refund_id"] }
111
+ },
112
+ {
113
+ "name": "create_customer",
114
+ "description": "Create a Mollie customer.",
115
+ "method": "POST",
116
+ "path": "/customers",
117
+ "input_schema": { "type": "object", "properties": { "name": { "type": "string" }, "email": { "type": "string" }, "locale": { "type": "string" }, "metadata": { "type": "object" }, "testmode": { "type": "boolean" } }, "required": ["name", "email"] }
118
+ },
119
+ {
120
+ "name": "list_customers",
121
+ "description": "List Mollie customers.",
122
+ "method": "GET",
123
+ "path": "/customers",
124
+ "input_schema": { "type": "object", "properties": { "from": { "type": "string" }, "limit": { "type": "integer" }, "testmode": { "type": "boolean" } } }
125
+ },
126
+ {
127
+ "name": "get_customer",
128
+ "description": "Retrieve one Mollie customer.",
129
+ "method": "GET",
130
+ "path": "/customers/{customer_id}",
131
+ "input_schema": { "type": "object", "properties": { "customer_id": { "type": "string" }, "testmode": { "type": "boolean" } }, "required": ["customer_id"] }
132
+ },
133
+ {
134
+ "name": "update_customer",
135
+ "description": "Update a Mollie customer.",
136
+ "method": "PATCH",
137
+ "path": "/customers/{customer_id}",
138
+ "input_schema": { "type": "object", "properties": { "customer_id": { "type": "string" }, "name": { "type": "string" }, "email": { "type": "string" }, "locale": { "type": "string" }, "metadata": { "type": "object" }, "testmode": { "type": "boolean" } }, "required": ["customer_id"] }
139
+ },
140
+ {
141
+ "name": "delete_customer",
142
+ "description": "Delete a Mollie customer.",
143
+ "method": "DELETE",
144
+ "path": "/customers/{customer_id}",
145
+ "input_schema": { "type": "object", "properties": { "customer_id": { "type": "string" }, "testmode": { "type": "boolean" } }, "required": ["customer_id"] }
146
+ },
147
+ {
148
+ "name": "list_mandates",
149
+ "description": "List mandates for a Mollie customer.",
150
+ "method": "GET",
151
+ "path": "/customers/{customer_id}/mandates",
152
+ "input_schema": { "type": "object", "properties": { "customer_id": { "type": "string" }, "from": { "type": "string" }, "limit": { "type": "integer" }, "testmode": { "type": "boolean" } }, "required": ["customer_id"] }
153
+ },
154
+ {
155
+ "name": "get_mandate",
156
+ "description": "Retrieve one Mollie mandate.",
157
+ "method": "GET",
158
+ "path": "/customers/{customer_id}/mandates/{mandate_id}",
159
+ "input_schema": { "type": "object", "properties": { "customer_id": { "type": "string" }, "mandate_id": { "type": "string" }, "testmode": { "type": "boolean" } }, "required": ["customer_id", "mandate_id"] }
160
+ },
161
+ {
162
+ "name": "create_subscription",
163
+ "description": "Create a subscription for a Mollie customer.",
164
+ "method": "POST",
165
+ "path": "/customers/{customer_id}/subscriptions",
166
+ "input_schema": { "type": "object", "properties": { "customer_id": { "type": "string" }, "amount": { "type": "object" }, "times": { "type": "integer" }, "interval": { "type": "string" }, "startDate": { "type": "string" }, "description": { "type": "string" }, "mandateId": { "type": "string" }, "webhookUrl": { "type": "string" }, "metadata": { "type": "object" }, "testmode": { "type": "boolean" } }, "required": ["customer_id", "amount", "interval", "description"] }
167
+ },
168
+ {
169
+ "name": "list_subscriptions",
170
+ "description": "List subscriptions for a Mollie customer.",
171
+ "method": "GET",
172
+ "path": "/customers/{customer_id}/subscriptions",
173
+ "input_schema": { "type": "object", "properties": { "customer_id": { "type": "string" }, "from": { "type": "string" }, "limit": { "type": "integer" }, "testmode": { "type": "boolean" } }, "required": ["customer_id"] }
174
+ },
175
+ {
176
+ "name": "get_subscription",
177
+ "description": "Retrieve one Mollie subscription.",
178
+ "method": "GET",
179
+ "path": "/customers/{customer_id}/subscriptions/{subscription_id}",
180
+ "input_schema": { "type": "object", "properties": { "customer_id": { "type": "string" }, "subscription_id": { "type": "string" }, "testmode": { "type": "boolean" } }, "required": ["customer_id", "subscription_id"] }
181
+ },
182
+ {
183
+ "name": "update_subscription",
184
+ "description": "Update a Mollie subscription.",
185
+ "method": "PATCH",
186
+ "path": "/customers/{customer_id}/subscriptions/{subscription_id}",
187
+ "input_schema": { "type": "object", "properties": { "customer_id": { "type": "string" }, "subscription_id": { "type": "string" }, "amount": { "type": "object" }, "times": { "type": "integer" }, "interval": { "type": "string" }, "startDate": { "type": "string" }, "description": { "type": "string" }, "mandateId": { "type": "string" }, "webhookUrl": { "type": "string" }, "metadata": { "type": "object" }, "testmode": { "type": "boolean" } }, "required": ["customer_id", "subscription_id"] }
188
+ },
189
+ {
190
+ "name": "cancel_subscription",
191
+ "description": "Cancel a Mollie subscription.",
192
+ "method": "DELETE",
193
+ "path": "/customers/{customer_id}/subscriptions/{subscription_id}",
194
+ "input_schema": { "type": "object", "properties": { "customer_id": { "type": "string" }, "subscription_id": { "type": "string" }, "testmode": { "type": "boolean" } }, "required": ["customer_id", "subscription_id"] }
195
+ },
196
+ {
197
+ "name": "create_payment_link",
198
+ "description": "Create a Mollie payment link.",
199
+ "method": "POST",
200
+ "path": "/payment-links",
201
+ "input_schema": { "type": "object", "properties": { "amount": { "type": "object" }, "description": { "type": "string" }, "redirectUrl": { "type": "string" }, "webhookUrl": { "type": "string" }, "expiresAt": { "type": "string" }, "profileId": { "type": "string" }, "testmode": { "type": "boolean" } }, "required": ["amount", "description"] }
202
+ },
203
+ {
204
+ "name": "list_payment_links",
205
+ "description": "List Mollie payment links.",
206
+ "method": "GET",
207
+ "path": "/payment-links",
208
+ "input_schema": { "type": "object", "properties": { "from": { "type": "string" }, "limit": { "type": "integer" }, "profileId": { "type": "string" }, "testmode": { "type": "boolean" } } }
209
+ },
210
+ {
211
+ "name": "get_payment_link",
212
+ "description": "Retrieve one Mollie payment link.",
213
+ "method": "GET",
214
+ "path": "/payment-links/{payment_link_id}",
215
+ "input_schema": { "type": "object", "properties": { "payment_link_id": { "type": "string" }, "testmode": { "type": "boolean" } }, "required": ["payment_link_id"] }
216
+ }
217
+ ],
218
+ "health_check": { "tool": "list_methods" }
219
+ }