@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.
- package/dist/http-executor.d.ts.map +1 -1
- package/dist/http-executor.js +62 -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 +4 -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/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/ko-fi.json +34 -0
- 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/ringover.json +69 -0
- package/src/apps/runpod.json +727 -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/stripe.json +1 -0
- package/src/apps/surfer.json +511 -0
- package/src/apps/twitter-api.json +14 -1
- 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
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "razorpay",
|
|
3
|
+
"name": "Razorpay",
|
|
4
|
+
"description": "Razorpay payment gateway API for orders, payments, captures, refunds, customers, payment links, invoices, plans, and subscriptions.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=razorpay.com&sz=128",
|
|
6
|
+
"categories": ["payments", "checkout", "billing", "subscriptions", "india"],
|
|
7
|
+
"base_url": "https://api.razorpay.com/v1",
|
|
8
|
+
"auth": {
|
|
9
|
+
"types": ["basic"],
|
|
10
|
+
"headers": {
|
|
11
|
+
"Authorization": "Basic {{basic_auth}}",
|
|
12
|
+
"Content-Type": "application/json"
|
|
13
|
+
},
|
|
14
|
+
"credential_fields": [
|
|
15
|
+
{
|
|
16
|
+
"name": "basic_auth",
|
|
17
|
+
"label": "Basic Auth",
|
|
18
|
+
"description": "Base64-encoded Razorpay key_id:key_secret value. Do not include the 'Basic ' prefix."
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
"tools": [
|
|
23
|
+
{
|
|
24
|
+
"name": "create_order",
|
|
25
|
+
"description": "Create a Razorpay order.",
|
|
26
|
+
"method": "POST",
|
|
27
|
+
"path": "/orders",
|
|
28
|
+
"input_schema": { "type": "object", "properties": { "amount": { "type": "integer", "description": "Amount in the smallest currency unit." }, "currency": { "type": "string" }, "receipt": { "type": "string" }, "notes": { "type": "object" }, "partial_payment": { "type": "boolean" }, "first_payment_min_amount": { "type": "integer" } }, "required": ["amount", "currency"] }
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "list_orders",
|
|
32
|
+
"description": "List Razorpay orders.",
|
|
33
|
+
"method": "GET",
|
|
34
|
+
"path": "/orders",
|
|
35
|
+
"input_schema": { "type": "object", "properties": { "count": { "type": "integer" }, "skip": { "type": "integer" }, "from": { "type": "integer" }, "to": { "type": "integer" } } }
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "get_order",
|
|
39
|
+
"description": "Retrieve one Razorpay order.",
|
|
40
|
+
"method": "GET",
|
|
41
|
+
"path": "/orders/{order_id}",
|
|
42
|
+
"input_schema": { "type": "object", "properties": { "order_id": { "type": "string" } }, "required": ["order_id"] }
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "list_payments",
|
|
46
|
+
"description": "List Razorpay payments.",
|
|
47
|
+
"method": "GET",
|
|
48
|
+
"path": "/payments",
|
|
49
|
+
"input_schema": { "type": "object", "properties": { "count": { "type": "integer" }, "skip": { "type": "integer" }, "from": { "type": "integer" }, "to": { "type": "integer" } } }
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "get_payment",
|
|
53
|
+
"description": "Retrieve one Razorpay payment.",
|
|
54
|
+
"method": "GET",
|
|
55
|
+
"path": "/payments/{payment_id}",
|
|
56
|
+
"input_schema": { "type": "object", "properties": { "payment_id": { "type": "string" } }, "required": ["payment_id"] }
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "capture_payment",
|
|
60
|
+
"description": "Capture an authorized Razorpay payment.",
|
|
61
|
+
"method": "POST",
|
|
62
|
+
"path": "/payments/{payment_id}/capture",
|
|
63
|
+
"input_schema": { "type": "object", "properties": { "payment_id": { "type": "string" }, "amount": { "type": "integer" }, "currency": { "type": "string" } }, "required": ["payment_id", "amount", "currency"] }
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "create_refund",
|
|
67
|
+
"description": "Create a normal refund for a captured Razorpay payment.",
|
|
68
|
+
"method": "POST",
|
|
69
|
+
"path": "/payments/{payment_id}/refund",
|
|
70
|
+
"input_schema": { "type": "object", "properties": { "payment_id": { "type": "string" }, "amount": { "type": "integer" }, "speed": { "type": "string" }, "notes": { "type": "object" }, "receipt": { "type": "string" } }, "required": ["payment_id"] }
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "list_refunds",
|
|
74
|
+
"description": "List Razorpay refunds.",
|
|
75
|
+
"method": "GET",
|
|
76
|
+
"path": "/refunds",
|
|
77
|
+
"input_schema": { "type": "object", "properties": { "count": { "type": "integer" }, "skip": { "type": "integer" }, "from": { "type": "integer" }, "to": { "type": "integer" }, "payment_id": { "type": "string" } } }
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "get_refund",
|
|
81
|
+
"description": "Retrieve one Razorpay refund.",
|
|
82
|
+
"method": "GET",
|
|
83
|
+
"path": "/refunds/{refund_id}",
|
|
84
|
+
"input_schema": { "type": "object", "properties": { "refund_id": { "type": "string" } }, "required": ["refund_id"] }
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "create_customer",
|
|
88
|
+
"description": "Create a Razorpay customer.",
|
|
89
|
+
"method": "POST",
|
|
90
|
+
"path": "/customers",
|
|
91
|
+
"input_schema": { "type": "object", "properties": { "name": { "type": "string" }, "email": { "type": "string" }, "contact": { "type": "string" }, "fail_existing": { "type": "string" }, "notes": { "type": "object" } } }
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "list_customers",
|
|
95
|
+
"description": "List Razorpay customers.",
|
|
96
|
+
"method": "GET",
|
|
97
|
+
"path": "/customers",
|
|
98
|
+
"input_schema": { "type": "object", "properties": { "count": { "type": "integer" }, "skip": { "type": "integer" } } }
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "get_customer",
|
|
102
|
+
"description": "Retrieve one Razorpay customer.",
|
|
103
|
+
"method": "GET",
|
|
104
|
+
"path": "/customers/{customer_id}",
|
|
105
|
+
"input_schema": { "type": "object", "properties": { "customer_id": { "type": "string" } }, "required": ["customer_id"] }
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "update_customer",
|
|
109
|
+
"description": "Update a Razorpay customer.",
|
|
110
|
+
"method": "PATCH",
|
|
111
|
+
"path": "/customers/{customer_id}",
|
|
112
|
+
"input_schema": { "type": "object", "properties": { "customer_id": { "type": "string" }, "name": { "type": "string" }, "email": { "type": "string" }, "contact": { "type": "string" }, "notes": { "type": "object" } }, "required": ["customer_id"] }
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "create_payment_link",
|
|
116
|
+
"description": "Create a Razorpay payment link.",
|
|
117
|
+
"method": "POST",
|
|
118
|
+
"path": "/payment_links",
|
|
119
|
+
"input_schema": { "type": "object", "properties": { "amount": { "type": "integer" }, "currency": { "type": "string" }, "accept_partial": { "type": "boolean" }, "first_min_partial_amount": { "type": "integer" }, "description": { "type": "string" }, "customer": { "type": "object" }, "notify": { "type": "object" }, "reminder_enable": { "type": "boolean" }, "notes": { "type": "object" }, "callback_url": { "type": "string" }, "callback_method": { "type": "string" } }, "required": ["amount", "currency"] }
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"name": "list_payment_links",
|
|
123
|
+
"description": "List Razorpay payment links.",
|
|
124
|
+
"method": "GET",
|
|
125
|
+
"path": "/payment_links",
|
|
126
|
+
"input_schema": { "type": "object", "properties": { "count": { "type": "integer" }, "skip": { "type": "integer" }, "from": { "type": "integer" }, "to": { "type": "integer" }, "reference_id": { "type": "string" } } }
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"name": "get_payment_link",
|
|
130
|
+
"description": "Retrieve one Razorpay payment link.",
|
|
131
|
+
"method": "GET",
|
|
132
|
+
"path": "/payment_links/{payment_link_id}",
|
|
133
|
+
"input_schema": { "type": "object", "properties": { "payment_link_id": { "type": "string" } }, "required": ["payment_link_id"] }
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "create_invoice",
|
|
137
|
+
"description": "Create a Razorpay invoice.",
|
|
138
|
+
"method": "POST",
|
|
139
|
+
"path": "/invoices",
|
|
140
|
+
"input_schema": { "type": "object", "properties": { "type": { "type": "string" }, "description": { "type": "string" }, "customer": { "type": "object" }, "line_items": { "type": "array" }, "sms_notify": { "type": "integer" }, "email_notify": { "type": "integer" }, "expire_by": { "type": "integer" }, "notes": { "type": "object" } } }
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "list_invoices",
|
|
144
|
+
"description": "List Razorpay invoices.",
|
|
145
|
+
"method": "GET",
|
|
146
|
+
"path": "/invoices",
|
|
147
|
+
"input_schema": { "type": "object", "properties": { "count": { "type": "integer" }, "skip": { "type": "integer" }, "from": { "type": "integer" }, "to": { "type": "integer" } } }
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"name": "get_invoice",
|
|
151
|
+
"description": "Retrieve one Razorpay invoice.",
|
|
152
|
+
"method": "GET",
|
|
153
|
+
"path": "/invoices/{invoice_id}",
|
|
154
|
+
"input_schema": { "type": "object", "properties": { "invoice_id": { "type": "string" } }, "required": ["invoice_id"] }
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"name": "create_plan",
|
|
158
|
+
"description": "Create a Razorpay subscription plan.",
|
|
159
|
+
"method": "POST",
|
|
160
|
+
"path": "/plans",
|
|
161
|
+
"input_schema": { "type": "object", "properties": { "period": { "type": "string" }, "interval": { "type": "integer" }, "item": { "type": "object" }, "notes": { "type": "object" } }, "required": ["period", "interval", "item"] }
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"name": "list_plans",
|
|
165
|
+
"description": "List Razorpay subscription plans.",
|
|
166
|
+
"method": "GET",
|
|
167
|
+
"path": "/plans",
|
|
168
|
+
"input_schema": { "type": "object", "properties": { "count": { "type": "integer" }, "skip": { "type": "integer" } } }
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"name": "get_plan",
|
|
172
|
+
"description": "Retrieve one Razorpay plan.",
|
|
173
|
+
"method": "GET",
|
|
174
|
+
"path": "/plans/{plan_id}",
|
|
175
|
+
"input_schema": { "type": "object", "properties": { "plan_id": { "type": "string" } }, "required": ["plan_id"] }
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"name": "create_subscription",
|
|
179
|
+
"description": "Create a Razorpay subscription.",
|
|
180
|
+
"method": "POST",
|
|
181
|
+
"path": "/subscriptions",
|
|
182
|
+
"input_schema": { "type": "object", "properties": { "plan_id": { "type": "string" }, "total_count": { "type": "integer" }, "quantity": { "type": "integer" }, "customer_notify": { "type": "integer" }, "start_at": { "type": "integer" }, "expire_by": { "type": "integer" }, "addons": { "type": "array" }, "notes": { "type": "object" } }, "required": ["plan_id", "total_count"] }
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"name": "list_subscriptions",
|
|
186
|
+
"description": "List Razorpay subscriptions.",
|
|
187
|
+
"method": "GET",
|
|
188
|
+
"path": "/subscriptions",
|
|
189
|
+
"input_schema": { "type": "object", "properties": { "count": { "type": "integer" }, "skip": { "type": "integer" } } }
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"name": "get_subscription",
|
|
193
|
+
"description": "Retrieve one Razorpay subscription.",
|
|
194
|
+
"method": "GET",
|
|
195
|
+
"path": "/subscriptions/{subscription_id}",
|
|
196
|
+
"input_schema": { "type": "object", "properties": { "subscription_id": { "type": "string" } }, "required": ["subscription_id"] }
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"name": "cancel_subscription",
|
|
200
|
+
"description": "Cancel a Razorpay subscription.",
|
|
201
|
+
"method": "POST",
|
|
202
|
+
"path": "/subscriptions/{subscription_id}/cancel",
|
|
203
|
+
"input_schema": { "type": "object", "properties": { "subscription_id": { "type": "string" }, "cancel_at_cycle_end": { "type": "integer" } }, "required": ["subscription_id"] }
|
|
204
|
+
}
|
|
205
|
+
],
|
|
206
|
+
"health_check": { "tool": "list_payments", "input": { "count": 1 } }
|
|
207
|
+
}
|
package/src/apps/ringover.json
CHANGED
|
@@ -127,6 +127,75 @@
|
|
|
127
127
|
"method": "GET",
|
|
128
128
|
"path": "/presences"
|
|
129
129
|
},
|
|
130
|
+
{
|
|
131
|
+
"name": "list_available_snoozes",
|
|
132
|
+
"display_name": "List Available Snoozes",
|
|
133
|
+
"description": "List available Ringover snooze labels configured for the team.",
|
|
134
|
+
"method": "GET",
|
|
135
|
+
"path": "/snoozes"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "get_user_snooze_log",
|
|
139
|
+
"display_name": "Get User Snooze Log",
|
|
140
|
+
"description": "Get the snooze activity log for a Ringover user.",
|
|
141
|
+
"method": "GET",
|
|
142
|
+
"path": "/users/{user_id}/snooze/log",
|
|
143
|
+
"input_schema": {
|
|
144
|
+
"type": "object",
|
|
145
|
+
"properties": {
|
|
146
|
+
"user_id": {
|
|
147
|
+
"type": "string",
|
|
148
|
+
"description": "Ringover user ID."
|
|
149
|
+
},
|
|
150
|
+
"limit_count": {
|
|
151
|
+
"type": "integer",
|
|
152
|
+
"description": "Maximum number of snooze log entries to return."
|
|
153
|
+
},
|
|
154
|
+
"limit_offset": {
|
|
155
|
+
"type": "integer",
|
|
156
|
+
"description": "Number of snooze log entries to skip."
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
"required": [
|
|
160
|
+
"user_id"
|
|
161
|
+
]
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"name": "set_user_snooze",
|
|
166
|
+
"display_name": "Set User Snooze",
|
|
167
|
+
"description": "Set or clear a Ringover user's snooze status. Use an empty name to clear snooze.",
|
|
168
|
+
"method": "PUT",
|
|
169
|
+
"path": "/users/{user_id}/snooze",
|
|
170
|
+
"request_transform": {
|
|
171
|
+
"type": "json_wrap",
|
|
172
|
+
"fields": [
|
|
173
|
+
"name",
|
|
174
|
+
"duration"
|
|
175
|
+
]
|
|
176
|
+
},
|
|
177
|
+
"input_schema": {
|
|
178
|
+
"type": "object",
|
|
179
|
+
"properties": {
|
|
180
|
+
"user_id": {
|
|
181
|
+
"type": "string",
|
|
182
|
+
"description": "Ringover user ID."
|
|
183
|
+
},
|
|
184
|
+
"name": {
|
|
185
|
+
"type": "string",
|
|
186
|
+
"description": "Snooze label name. Send an empty string to clear snooze."
|
|
187
|
+
},
|
|
188
|
+
"duration": {
|
|
189
|
+
"type": "integer",
|
|
190
|
+
"description": "Optional snooze duration in seconds."
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
"required": [
|
|
194
|
+
"user_id",
|
|
195
|
+
"name"
|
|
196
|
+
]
|
|
197
|
+
}
|
|
198
|
+
},
|
|
130
199
|
{
|
|
131
200
|
"name": "list_numbers",
|
|
132
201
|
"display_name": "List Numbers",
|