@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.
- package/dist/http-executor.d.ts.map +1 -1
- package/dist/http-executor.js +144 -8
- package/dist/http-executor.js.map +1 -1
- package/dist/mcp-generator.js +24 -0
- package/dist/mcp-generator.js.map +1 -1
- package/dist/types.d.ts +7 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/apps/anthropic-admin.json +183 -0
- package/src/apps/aws-ses.json +1 -1
- package/src/apps/braintree.json +53 -0
- package/src/apps/bunny-stream.json +50 -28
- package/src/apps/ccbill.json +142 -0
- package/src/apps/close.json +238 -301
- package/src/apps/craftcloud.json +251 -202
- package/src/apps/dataforseo.json +1700 -2
- package/src/apps/deepgram.json +288 -1
- package/src/apps/elevenlabs.json +9 -0
- package/src/apps/fal-ai.json +278 -290
- package/src/apps/gladia.json +158 -0
- package/src/apps/gmail.json +2 -5
- package/src/apps/gumroad.json +569 -0
- package/src/apps/imaterialise.json +171 -262
- package/src/apps/jlcpcb.json +43 -0
- package/src/apps/jungle-scout.json +166 -0
- package/src/apps/kling-ai.json +197 -161
- package/src/apps/ko-fi.json +34 -0
- package/src/apps/leadbyte.json +16 -54
- package/src/apps/lemon-squeezy.json +270 -0
- package/src/apps/mollie.json +219 -0
- package/src/apps/paddle.json +199 -9
- package/src/apps/payhip.json +162 -0
- package/src/apps/paystack.json +207 -0
- package/src/apps/pipedrive.json +221 -212
- package/src/apps/razorpay.json +207 -0
- package/src/apps/replicate.json +315 -61
- package/src/apps/ringover.json +69 -0
- package/src/apps/runpod.json +727 -0
- package/src/apps/runway.json +386 -0
- package/src/apps/salesforce-crm.json +192 -233
- package/src/apps/sculpteo.json +98 -180
- package/src/apps/segpay.json +215 -0
- package/src/apps/shapeways.json +114 -136
- package/src/apps/slant3d.json +260 -168
- package/src/apps/soniox.json +194 -0
- package/src/apps/speechmatics.json +167 -0
- package/src/apps/stability-ai.json +356 -0
- package/src/apps/stripe.json +1 -0
- package/src/apps/surfer.json +511 -0
- package/src/apps/twitter-api.json +19 -21
- package/src/apps/verotel.json +124 -0
- package/src/apps/whop.json +364 -0
- package/src/apps/zendesk-sell.json +248 -0
- package/src/apps/zendesk.json +190 -259
package/src/apps/leadbyte.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"sales",
|
|
12
12
|
"automation"
|
|
13
13
|
],
|
|
14
|
-
"base_url": "https://{{credential.
|
|
14
|
+
"base_url": "https://{{credential.account_host}}/restapi/v1.3",
|
|
15
15
|
"auth": {
|
|
16
16
|
"types": [
|
|
17
17
|
"api_key"
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
},
|
|
26
26
|
"credential_fields": [
|
|
27
27
|
{
|
|
28
|
-
"name": "
|
|
29
|
-
"label": "Account",
|
|
30
|
-
"description": "LeadByte account
|
|
28
|
+
"name": "account_host",
|
|
29
|
+
"label": "Account Host",
|
|
30
|
+
"description": "Full LeadByte account host without https://. Default format is ACCOUNT.leadbyte.co.uk; use ACCOUNT.leadbyte.com if your workspace is on the .com host.",
|
|
31
31
|
"type": "text",
|
|
32
32
|
"required": true
|
|
33
33
|
},
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
},
|
|
115
115
|
{
|
|
116
116
|
"name": "update_leads",
|
|
117
|
-
"description": "Update
|
|
117
|
+
"description": "Update one or more LeadByte leads through PUT /leads. For normal valid leads, each item uses id plus update fields and can trigger delivery IDs or action=reprocess. For quarantined leads, each item uses quarantineId plus update fields and can include action=process or action=reject.",
|
|
118
118
|
"method": "PUT",
|
|
119
119
|
"path": "/leads",
|
|
120
120
|
"input_schema": {
|
|
@@ -128,11 +128,15 @@
|
|
|
128
128
|
"properties": {
|
|
129
129
|
"id": {
|
|
130
130
|
"type": "string",
|
|
131
|
-
"description": "
|
|
131
|
+
"description": "Valid lead ID to update. Use quarantineId instead for quarantined leads."
|
|
132
|
+
},
|
|
133
|
+
"quarantineId": {
|
|
134
|
+
"type": "string",
|
|
135
|
+
"description": "Quarantined lead ID to update/release/reject. Use id instead for normal valid leads."
|
|
132
136
|
},
|
|
133
137
|
"update": {
|
|
134
138
|
"type": "object",
|
|
135
|
-
"description": "Lead fields to update."
|
|
139
|
+
"description": "Lead fields to update. Optional when only processing/rejecting quarantine leads through this route."
|
|
136
140
|
},
|
|
137
141
|
"triggerDeliveryId": {
|
|
138
142
|
"type": "string",
|
|
@@ -147,15 +151,14 @@
|
|
|
147
151
|
},
|
|
148
152
|
"action": {
|
|
149
153
|
"type": "string",
|
|
150
|
-
"description": "Optional action.",
|
|
154
|
+
"description": "Optional action. Use reprocess with id leads; use process or reject with quarantineId leads.",
|
|
151
155
|
"enum": [
|
|
152
|
-
"reprocess"
|
|
156
|
+
"reprocess",
|
|
157
|
+
"process",
|
|
158
|
+
"reject"
|
|
153
159
|
]
|
|
154
160
|
}
|
|
155
|
-
}
|
|
156
|
-
"required": [
|
|
157
|
-
"id"
|
|
158
|
-
]
|
|
161
|
+
}
|
|
159
162
|
}
|
|
160
163
|
}
|
|
161
164
|
},
|
|
@@ -197,47 +200,6 @@
|
|
|
197
200
|
]
|
|
198
201
|
}
|
|
199
202
|
},
|
|
200
|
-
{
|
|
201
|
-
"name": "update_quarantine_leads",
|
|
202
|
-
"description": "Update quarantined lead data. Include action=process or action=reject to release or reject after updating.",
|
|
203
|
-
"method": "PUT",
|
|
204
|
-
"path": "/leads",
|
|
205
|
-
"input_schema": {
|
|
206
|
-
"type": "object",
|
|
207
|
-
"properties": {
|
|
208
|
-
"leads": {
|
|
209
|
-
"type": "array",
|
|
210
|
-
"items": {
|
|
211
|
-
"type": "object",
|
|
212
|
-
"properties": {
|
|
213
|
-
"quarantineId": {
|
|
214
|
-
"type": "string",
|
|
215
|
-
"description": "Quarantined lead ID."
|
|
216
|
-
},
|
|
217
|
-
"update": {
|
|
218
|
-
"type": "object",
|
|
219
|
-
"description": "Lead fields to update."
|
|
220
|
-
},
|
|
221
|
-
"action": {
|
|
222
|
-
"type": "string",
|
|
223
|
-
"description": "Optional quarantine processing action.",
|
|
224
|
-
"enum": [
|
|
225
|
-
"process",
|
|
226
|
-
"reject"
|
|
227
|
-
]
|
|
228
|
-
}
|
|
229
|
-
},
|
|
230
|
-
"required": [
|
|
231
|
-
"quarantineId"
|
|
232
|
-
]
|
|
233
|
-
}
|
|
234
|
-
}
|
|
235
|
-
},
|
|
236
|
-
"required": [
|
|
237
|
-
"leads"
|
|
238
|
-
]
|
|
239
|
-
}
|
|
240
|
-
},
|
|
241
203
|
{
|
|
242
204
|
"name": "process_quarantine_lead",
|
|
243
205
|
"description": "Release or reject a quarantined lead without updating its data.",
|
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "lemon-squeezy",
|
|
3
|
+
"name": "Lemon Squeezy",
|
|
4
|
+
"description": "Lemon Squeezy merchant-of-record API for digital products, stores, products, variants, checkouts, orders, subscriptions, customers, license keys, discounts, and webhooks.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=lemonsqueezy.com&sz=128",
|
|
6
|
+
"categories": ["payments", "billing", "subscriptions", "checkout", "merchant-of-record", "digital-products"],
|
|
7
|
+
"base_url": "https://api.lemonsqueezy.com/v1",
|
|
8
|
+
"auth": {
|
|
9
|
+
"types": ["bearer"],
|
|
10
|
+
"headers": {
|
|
11
|
+
"Authorization": "Bearer {{token}}",
|
|
12
|
+
"Accept": "application/vnd.api+json",
|
|
13
|
+
"Content-Type": "application/vnd.api+json"
|
|
14
|
+
},
|
|
15
|
+
"credential_fields": [
|
|
16
|
+
{
|
|
17
|
+
"name": "token",
|
|
18
|
+
"label": "API Key",
|
|
19
|
+
"description": "Lemon Squeezy API key from Settings > API."
|
|
20
|
+
}
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
"tools": [
|
|
24
|
+
{
|
|
25
|
+
"name": "list_stores",
|
|
26
|
+
"description": "List stores available to the API key.",
|
|
27
|
+
"method": "GET",
|
|
28
|
+
"path": "/stores",
|
|
29
|
+
"input_schema": { "type": "object", "properties": { "page_number": { "type": "integer" }, "page_size": { "type": "integer" } } },
|
|
30
|
+
"query_param_aliases": { "page_number": "page[number]", "page_size": "page[size]" }
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "get_store",
|
|
34
|
+
"description": "Retrieve one Lemon Squeezy store.",
|
|
35
|
+
"method": "GET",
|
|
36
|
+
"path": "/stores/{store_id}",
|
|
37
|
+
"input_schema": { "type": "object", "properties": { "store_id": { "type": "string" } }, "required": ["store_id"] }
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "list_products",
|
|
41
|
+
"description": "List products. Filter by store_id to find products for a specific store.",
|
|
42
|
+
"method": "GET",
|
|
43
|
+
"path": "/products",
|
|
44
|
+
"input_schema": { "type": "object", "properties": { "store_id": { "type": "string" }, "page_number": { "type": "integer" }, "page_size": { "type": "integer" } } },
|
|
45
|
+
"query_param_aliases": { "store_id": "filter[store_id]", "page_number": "page[number]", "page_size": "page[size]" }
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "get_product",
|
|
49
|
+
"description": "Retrieve one product.",
|
|
50
|
+
"method": "GET",
|
|
51
|
+
"path": "/products/{product_id}",
|
|
52
|
+
"input_schema": { "type": "object", "properties": { "product_id": { "type": "string" } }, "required": ["product_id"] }
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "list_variants",
|
|
56
|
+
"description": "List product variants. Filter by product_id when creating checkouts.",
|
|
57
|
+
"method": "GET",
|
|
58
|
+
"path": "/variants",
|
|
59
|
+
"input_schema": { "type": "object", "properties": { "product_id": { "type": "string" }, "page_number": { "type": "integer" }, "page_size": { "type": "integer" } } },
|
|
60
|
+
"query_param_aliases": { "product_id": "filter[product_id]", "page_number": "page[number]", "page_size": "page[size]" }
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "get_variant",
|
|
64
|
+
"description": "Retrieve one variant.",
|
|
65
|
+
"method": "GET",
|
|
66
|
+
"path": "/variants/{variant_id}",
|
|
67
|
+
"input_schema": { "type": "object", "properties": { "variant_id": { "type": "string" } }, "required": ["variant_id"] }
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "create_checkout",
|
|
71
|
+
"description": "Create a hosted checkout. Body must be Lemon Squeezy JSON:API format with data.type='checkouts', relationships.store, relationships.variant, and attributes such as checkout_options, product_options, checkout_data, expires_at, preview.",
|
|
72
|
+
"method": "POST",
|
|
73
|
+
"path": "/checkouts",
|
|
74
|
+
"timeout_ms": 60000,
|
|
75
|
+
"body_root_param": "body",
|
|
76
|
+
"input_schema": {
|
|
77
|
+
"type": "object",
|
|
78
|
+
"properties": {
|
|
79
|
+
"body": { "type": "object", "description": "Raw Lemon Squeezy JSON:API checkout create payload." }
|
|
80
|
+
},
|
|
81
|
+
"required": ["body"]
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "get_checkout",
|
|
86
|
+
"description": "Retrieve one checkout.",
|
|
87
|
+
"method": "GET",
|
|
88
|
+
"path": "/checkouts/{checkout_id}",
|
|
89
|
+
"input_schema": { "type": "object", "properties": { "checkout_id": { "type": "string" } }, "required": ["checkout_id"] }
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "list_orders",
|
|
93
|
+
"description": "List orders. Filter by store_id, user_email, or status when reconciling sales.",
|
|
94
|
+
"method": "GET",
|
|
95
|
+
"path": "/orders",
|
|
96
|
+
"input_schema": { "type": "object", "properties": { "store_id": { "type": "string" }, "user_email": { "type": "string" }, "status": { "type": "string" }, "page_number": { "type": "integer" }, "page_size": { "type": "integer" } } },
|
|
97
|
+
"query_param_aliases": { "store_id": "filter[store_id]", "user_email": "filter[user_email]", "status": "filter[status]", "page_number": "page[number]", "page_size": "page[size]" }
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "get_order",
|
|
101
|
+
"description": "Retrieve one order.",
|
|
102
|
+
"method": "GET",
|
|
103
|
+
"path": "/orders/{order_id}",
|
|
104
|
+
"input_schema": { "type": "object", "properties": { "order_id": { "type": "string" } }, "required": ["order_id"] }
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"name": "list_customers",
|
|
108
|
+
"description": "List customers. Filter by store_id or email.",
|
|
109
|
+
"method": "GET",
|
|
110
|
+
"path": "/customers",
|
|
111
|
+
"input_schema": { "type": "object", "properties": { "store_id": { "type": "string" }, "email": { "type": "string" }, "page_number": { "type": "integer" }, "page_size": { "type": "integer" } } },
|
|
112
|
+
"query_param_aliases": { "store_id": "filter[store_id]", "email": "filter[email]", "page_number": "page[number]", "page_size": "page[size]" }
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "list_subscriptions",
|
|
116
|
+
"description": "List subscriptions. Filter by store_id, order_id, product_id, variant_id, user_email, or status.",
|
|
117
|
+
"method": "GET",
|
|
118
|
+
"path": "/subscriptions",
|
|
119
|
+
"input_schema": { "type": "object", "properties": { "store_id": { "type": "string" }, "order_id": { "type": "string" }, "product_id": { "type": "string" }, "variant_id": { "type": "string" }, "user_email": { "type": "string" }, "status": { "type": "string" }, "page_number": { "type": "integer" }, "page_size": { "type": "integer" } } },
|
|
120
|
+
"query_param_aliases": { "store_id": "filter[store_id]", "order_id": "filter[order_id]", "product_id": "filter[product_id]", "variant_id": "filter[variant_id]", "user_email": "filter[user_email]", "status": "filter[status]", "page_number": "page[number]", "page_size": "page[size]" }
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"name": "get_subscription",
|
|
124
|
+
"description": "Retrieve one subscription.",
|
|
125
|
+
"method": "GET",
|
|
126
|
+
"path": "/subscriptions/{subscription_id}",
|
|
127
|
+
"input_schema": { "type": "object", "properties": { "subscription_id": { "type": "string" } }, "required": ["subscription_id"] }
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "update_subscription",
|
|
131
|
+
"description": "Update a subscription using Lemon Squeezy JSON:API format. Use for pause, resume, cancel at period end, variant changes, billing anchor, invoice_soon, or metadata updates.",
|
|
132
|
+
"method": "PATCH",
|
|
133
|
+
"path": "/subscriptions/{subscription_id}",
|
|
134
|
+
"timeout_ms": 60000,
|
|
135
|
+
"body_root_param": "body",
|
|
136
|
+
"input_schema": { "type": "object", "properties": { "subscription_id": { "type": "string" }, "body": { "type": "object" } }, "required": ["subscription_id", "body"] }
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"name": "list_license_keys",
|
|
140
|
+
"description": "List license keys. Filter by store_id, order_id, order_item_id, product_id, user_email, or status.",
|
|
141
|
+
"method": "GET",
|
|
142
|
+
"path": "/license-keys",
|
|
143
|
+
"input_schema": { "type": "object", "properties": { "store_id": { "type": "string" }, "order_id": { "type": "string" }, "product_id": { "type": "string" }, "user_email": { "type": "string" }, "status": { "type": "string" }, "page_number": { "type": "integer" }, "page_size": { "type": "integer" } } },
|
|
144
|
+
"query_param_aliases": { "store_id": "filter[store_id]", "order_id": "filter[order_id]", "product_id": "filter[product_id]", "user_email": "filter[user_email]", "status": "filter[status]", "page_number": "page[number]", "page_size": "page[size]" }
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"name": "get_license_key",
|
|
148
|
+
"description": "Retrieve one Lemon Squeezy license key.",
|
|
149
|
+
"method": "GET",
|
|
150
|
+
"path": "/license-keys/{license_key_id}",
|
|
151
|
+
"input_schema": { "type": "object", "properties": { "license_key_id": { "type": "string" } }, "required": ["license_key_id"] }
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"name": "list_license_instances",
|
|
155
|
+
"description": "List license key activation instances. Filter by license_key_id when auditing where a key is activated.",
|
|
156
|
+
"method": "GET",
|
|
157
|
+
"path": "/license-instances",
|
|
158
|
+
"input_schema": { "type": "object", "properties": { "license_key_id": { "type": "string" }, "page_number": { "type": "integer" }, "page_size": { "type": "integer" } } },
|
|
159
|
+
"query_param_aliases": { "license_key_id": "filter[license_key_id]", "page_number": "page[number]", "page_size": "page[size]" }
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"name": "get_license_instance",
|
|
163
|
+
"description": "Retrieve one Lemon Squeezy license instance.",
|
|
164
|
+
"method": "GET",
|
|
165
|
+
"path": "/license-instances/{license_instance_id}",
|
|
166
|
+
"input_schema": { "type": "object", "properties": { "license_instance_id": { "type": "string" } }, "required": ["license_instance_id"] }
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"name": "list_order_items",
|
|
170
|
+
"description": "List Lemon Squeezy order items. Useful for seeing exactly which product/variant was purchased.",
|
|
171
|
+
"method": "GET",
|
|
172
|
+
"path": "/order-items",
|
|
173
|
+
"input_schema": { "type": "object", "properties": { "order_id": { "type": "string" }, "product_id": { "type": "string" }, "variant_id": { "type": "string" }, "page_number": { "type": "integer" }, "page_size": { "type": "integer" } } },
|
|
174
|
+
"query_param_aliases": { "order_id": "filter[order_id]", "product_id": "filter[product_id]", "variant_id": "filter[variant_id]", "page_number": "page[number]", "page_size": "page[size]" }
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"name": "get_order_item",
|
|
178
|
+
"description": "Retrieve one Lemon Squeezy order item.",
|
|
179
|
+
"method": "GET",
|
|
180
|
+
"path": "/order-items/{order_item_id}",
|
|
181
|
+
"input_schema": { "type": "object", "properties": { "order_item_id": { "type": "string" } }, "required": ["order_item_id"] }
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"name": "list_files",
|
|
185
|
+
"description": "List Lemon Squeezy downloadable file records for digital products. Use this to inspect hosted audio/download files already attached in Lemon Squeezy. Public API docs expose file read/list, not direct file upload/create; use Gumroad or an external storage flow if an agent must upload audio bytes programmatically.",
|
|
186
|
+
"method": "GET",
|
|
187
|
+
"path": "/files",
|
|
188
|
+
"input_schema": { "type": "object", "properties": { "variant_id": { "type": "string" }, "page_number": { "type": "integer" }, "page_size": { "type": "integer" } } },
|
|
189
|
+
"query_param_aliases": { "variant_id": "filter[variant_id]", "page_number": "page[number]", "page_size": "page[size]" }
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"name": "get_file",
|
|
193
|
+
"description": "Retrieve one Lemon Squeezy file record. This returns metadata for an existing hosted downloadable file; it does not upload a new audio file.",
|
|
194
|
+
"method": "GET",
|
|
195
|
+
"path": "/files/{file_id}",
|
|
196
|
+
"input_schema": { "type": "object", "properties": { "file_id": { "type": "string" } }, "required": ["file_id"] }
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"name": "list_discounts",
|
|
200
|
+
"description": "List Lemon Squeezy discounts. Filter by store_id when managing promotions.",
|
|
201
|
+
"method": "GET",
|
|
202
|
+
"path": "/discounts",
|
|
203
|
+
"input_schema": { "type": "object", "properties": { "store_id": { "type": "string" }, "page_number": { "type": "integer" }, "page_size": { "type": "integer" } } },
|
|
204
|
+
"query_param_aliases": { "store_id": "filter[store_id]", "page_number": "page[number]", "page_size": "page[size]" }
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"name": "get_discount",
|
|
208
|
+
"description": "Retrieve one Lemon Squeezy discount.",
|
|
209
|
+
"method": "GET",
|
|
210
|
+
"path": "/discounts/{discount_id}",
|
|
211
|
+
"input_schema": { "type": "object", "properties": { "discount_id": { "type": "string" } }, "required": ["discount_id"] }
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"name": "create_discount",
|
|
215
|
+
"description": "Create a Lemon Squeezy discount. Body must be Lemon Squeezy JSON:API data.type='discounts' with relationships.store and provider-supported attributes such as name, code, amount, amount_type, duration, duration_in_months, max_redemptions, starts_at, expires_at.",
|
|
216
|
+
"method": "POST",
|
|
217
|
+
"path": "/discounts",
|
|
218
|
+
"body_root_param": "body",
|
|
219
|
+
"input_schema": { "type": "object", "properties": { "body": { "type": "object" } }, "required": ["body"] }
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"name": "delete_discount",
|
|
223
|
+
"description": "Delete a Lemon Squeezy discount.",
|
|
224
|
+
"method": "DELETE",
|
|
225
|
+
"path": "/discounts/{discount_id}",
|
|
226
|
+
"input_schema": { "type": "object", "properties": { "discount_id": { "type": "string" } }, "required": ["discount_id"] }
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"name": "list_webhooks",
|
|
230
|
+
"description": "List webhooks configured in Lemon Squeezy.",
|
|
231
|
+
"method": "GET",
|
|
232
|
+
"path": "/webhooks",
|
|
233
|
+
"input_schema": { "type": "object", "properties": { "store_id": { "type": "string" }, "page_number": { "type": "integer" }, "page_size": { "type": "integer" } } },
|
|
234
|
+
"query_param_aliases": { "store_id": "filter[store_id]", "page_number": "page[number]", "page_size": "page[size]" }
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"name": "create_webhook",
|
|
238
|
+
"description": "Create a Lemon Squeezy webhook. Body must be JSON:API data.type='webhooks' with relationships.store and attributes.url/events/secret/test_mode.",
|
|
239
|
+
"method": "POST",
|
|
240
|
+
"path": "/webhooks",
|
|
241
|
+
"body_root_param": "body",
|
|
242
|
+
"input_schema": { "type": "object", "properties": { "body": { "type": "object" } }, "required": ["body"] }
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"name": "delete_webhook",
|
|
246
|
+
"description": "Delete a Lemon Squeezy webhook.",
|
|
247
|
+
"method": "DELETE",
|
|
248
|
+
"path": "/webhooks/{webhook_id}",
|
|
249
|
+
"input_schema": { "type": "object", "properties": { "webhook_id": { "type": "string" } }, "required": ["webhook_id"] }
|
|
250
|
+
}
|
|
251
|
+
],
|
|
252
|
+
"webhooks": {
|
|
253
|
+
"signature_header": "x-signature",
|
|
254
|
+
"registration": {
|
|
255
|
+
"method": "POST",
|
|
256
|
+
"path": "/webhooks",
|
|
257
|
+
"manual_setup": "Lemon Squeezy webhooks require a JSON:API body with relationships.store and attributes.url/events/secret/test_mode. Use lemon-squeezy_create_webhook for programmatic setup when you know the store ID and desired event list."
|
|
258
|
+
},
|
|
259
|
+
"events": [
|
|
260
|
+
{ "name": "order_created", "description": "Sent when an order is created." },
|
|
261
|
+
{ "name": "subscription_created", "description": "Sent when a subscription is created." },
|
|
262
|
+
{ "name": "subscription_updated", "description": "Sent when a subscription is updated." },
|
|
263
|
+
{ "name": "subscription_cancelled", "description": "Sent when a subscription is cancelled." },
|
|
264
|
+
{ "name": "subscription_resumed", "description": "Sent when a subscription is resumed." },
|
|
265
|
+
{ "name": "subscription_expired", "description": "Sent when a subscription expires." },
|
|
266
|
+
{ "name": "license_key_created", "description": "Sent when a license key is created." }
|
|
267
|
+
]
|
|
268
|
+
},
|
|
269
|
+
"health_check": { "tool": "list_stores" }
|
|
270
|
+
}
|
|
@@ -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
|
+
}
|