0nmcp 3.1.0 → 3.2.0

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/lib/catalog.json CHANGED
@@ -3,41 +3,117 @@
3
3
  "_meta": {
4
4
  "name": "0nMCP Service Catalog",
5
5
  "description": "Single source of truth for all services, tools, actions, and triggers in the 0nMCP ecosystem",
6
- "version": "2.2.0",
7
- "lastUpdated": "2026-02-28T12:00:00Z",
6
+ "version": "3.0.0",
7
+ "lastUpdated": "2026-04-05T21:58:11.968Z",
8
8
  "maintainer": "0nORK <hello@0nork.com>"
9
9
  },
10
+ "categories": {
11
+ "crm": {
12
+ "label": "CRM",
13
+ "icon": "users"
14
+ },
15
+ "payments": {
16
+ "label": "Payments",
17
+ "icon": "credit-card"
18
+ },
19
+ "communication": {
20
+ "label": "Communication",
21
+ "icon": "message-circle"
22
+ },
23
+ "ai": {
24
+ "label": "AI",
25
+ "icon": "brain"
26
+ },
27
+ "email": {
28
+ "label": "Email",
29
+ "icon": "mail"
30
+ },
31
+ "database": {
32
+ "label": "Database",
33
+ "icon": "database"
34
+ },
35
+ "productivity": {
36
+ "label": "Productivity",
37
+ "icon": "layout"
38
+ },
39
+ "devtools": {
40
+ "label": "Dev Tools",
41
+ "icon": "code"
42
+ },
43
+ "ecommerce": {
44
+ "label": "E-Commerce",
45
+ "icon": "shopping-cart"
46
+ },
47
+ "scheduling": {
48
+ "label": "Scheduling",
49
+ "icon": "calendar"
50
+ },
51
+ "storage": {
52
+ "label": "Storage",
53
+ "icon": "hard-drive"
54
+ },
55
+ "support": {
56
+ "label": "Support",
57
+ "icon": "headphones"
58
+ },
59
+ "marketing": {
60
+ "label": "Marketing",
61
+ "icon": "megaphone"
62
+ },
63
+ "accounting": {
64
+ "label": "Accounting",
65
+ "icon": "calculator"
66
+ },
67
+ "advertising": {
68
+ "label": "Advertising",
69
+ "icon": "megaphone"
70
+ },
71
+ "finance": {
72
+ "label": "Finance",
73
+ "icon": "banknote"
74
+ },
75
+ "cloud": {
76
+ "label": "Cloud",
77
+ "icon": "cloud"
78
+ },
79
+ "integration": {
80
+ "label": "Integration",
81
+ "icon": "link"
82
+ },
83
+ "automation": {
84
+ "label": "Automation",
85
+ "icon": "bot"
86
+ },
87
+ "project": {
88
+ "label": "Project Management",
89
+ "icon": "clipboard"
90
+ },
91
+ "social": {
92
+ "label": "Social Media",
93
+ "icon": "share"
94
+ }
95
+ },
10
96
  "services": [
11
97
  {
12
98
  "id": "crm",
13
99
  "name": "CRM",
14
100
  "category": "crm",
15
- "description": "CRM, contacts, opportunities, pipelines, workflows",
101
+ "description": "Customer Relationship Management — contacts, pipelines, opportunities, workflows, SMS, email campaigns",
16
102
  "tools": [
17
- "crm_get_contacts",
18
103
  "crm_create_contact",
104
+ "crm_search_contacts",
105
+ "crm_get_contact",
19
106
  "crm_update_contact",
20
107
  "crm_delete_contact",
21
- "crm_search_contacts",
22
- "crm_get_opportunities",
108
+ "crm_create_pipeline",
109
+ "crm_list_pipelines",
23
110
  "crm_create_opportunity",
24
- "crm_update_opportunity",
25
- "crm_get_pipelines",
26
- "crm_get_calendars",
27
- "crm_get_appointments",
28
- "crm_create_appointment",
29
- "crm_get_tasks",
30
- "crm_create_task",
31
- "crm_get_tags",
32
- "crm_add_tag",
33
- "crm_remove_tag",
34
- "crm_get_conversations",
35
- "crm_send_message",
36
- "crm_get_workflows",
37
- "crm_get_custom_values",
38
- "crm_set_custom_value",
39
- "crm_get_users",
40
- "crm_get_locations"
111
+ "crm_create_tag",
112
+ "crm_list_tags",
113
+ "crm_create_custom_value",
114
+ "crm_list_custom_values",
115
+ "crm_list_workflows",
116
+ "crm_list_calendars"
41
117
  ],
42
118
  "actions": [
43
119
  "crm_sync",
@@ -50,29 +126,24 @@
50
126
  "opportunity_status_changed",
51
127
  "appointment_booked",
52
128
  "form_submitted"
53
- ],
54
- "rateLimit": { "requests": 100, "window": 60 }
129
+ ]
55
130
  },
56
131
  {
57
132
  "id": "stripe",
58
133
  "name": "Stripe",
59
134
  "category": "payments",
60
- "description": "Payments, subscriptions, invoices, customers",
135
+ "description": "Payment processing — customers, charges, subscriptions, invoices, payouts",
61
136
  "tools": [
62
137
  "stripe_create_customer",
138
+ "stripe_list_customers",
63
139
  "stripe_get_customer",
64
- "stripe_create_payment_intent",
65
- "stripe_list_payments",
140
+ "stripe_create_charge",
66
141
  "stripe_create_invoice",
67
142
  "stripe_send_invoice",
68
- "stripe_get_balance",
69
- "stripe_create_subscription",
70
- "stripe_cancel_subscription",
71
- "stripe_list_subscriptions",
72
- "stripe_create_checkout_session",
73
- "stripe_get_payment_methods",
74
- "stripe_create_refund",
75
143
  "stripe_list_invoices",
144
+ "stripe_create_subscription",
145
+ "stripe_get_balance",
146
+ "stripe_list_payments",
76
147
  "stripe_create_product",
77
148
  "stripe_create_price"
78
149
  ],
@@ -87,25 +158,188 @@
87
158
  "subscription_created",
88
159
  "subscription_cancelled",
89
160
  "invoice_paid"
161
+ ]
162
+ },
163
+ {
164
+ "id": "sendgrid",
165
+ "name": "SendGrid",
166
+ "category": "email",
167
+ "description": "Transactional and marketing email — send, templates, contacts",
168
+ "tools": [
169
+ "sendgrid_send_email",
170
+ "sendgrid_add_contacts",
171
+ "sendgrid_search_contacts",
172
+ "sendgrid_list_templates",
173
+ "sendgrid_list_lists"
174
+ ],
175
+ "actions": [
176
+ "email_campaign",
177
+ "bounce_cleanup"
178
+ ],
179
+ "triggers": [
180
+ "email_delivered",
181
+ "email_opened",
182
+ "email_bounced",
183
+ "email_clicked"
184
+ ]
185
+ },
186
+ {
187
+ "id": "resend",
188
+ "name": "Resend",
189
+ "category": "email",
190
+ "description": "Developer-first email API — transactional emails, broadcasts, contacts, domains, templates, segments, webhooks",
191
+ "tools": [
192
+ "resend_send_email",
193
+ "resend_send_batch_emails",
194
+ "resend_list_emails",
195
+ "resend_get_email",
196
+ "resend_update_email",
197
+ "resend_cancel_email",
198
+ "resend_list_received_emails",
199
+ "resend_get_received_email",
200
+ "resend_list_email_attachments",
201
+ "resend_get_email_attachment",
202
+ "resend_list_received_attachments",
203
+ "resend_get_received_attachment",
204
+ "resend_create_domain",
205
+ "resend_list_domains",
206
+ "resend_get_domain",
207
+ "resend_update_domain",
208
+ "resend_verify_domain",
209
+ "resend_delete_domain",
210
+ "resend_create_api_key",
211
+ "resend_list_api_keys",
212
+ "resend_delete_api_key",
213
+ "resend_create_audience",
214
+ "resend_list_audiences",
215
+ "resend_get_audience",
216
+ "resend_delete_audience",
217
+ "resend_create_contact",
218
+ "resend_list_contacts",
219
+ "resend_get_contact",
220
+ "resend_update_contact",
221
+ "resend_delete_contact",
222
+ "resend_add_contact_to_segment",
223
+ "resend_remove_contact_from_segment",
224
+ "resend_list_contact_segments",
225
+ "resend_get_contact_topics",
226
+ "resend_update_contact_topics",
227
+ "resend_create_broadcast",
228
+ "resend_list_broadcasts",
229
+ "resend_get_broadcast",
230
+ "resend_update_broadcast",
231
+ "resend_send_broadcast",
232
+ "resend_delete_broadcast",
233
+ "resend_create_segment",
234
+ "resend_list_segments",
235
+ "resend_get_segment",
236
+ "resend_delete_segment",
237
+ "resend_create_contact_property",
238
+ "resend_list_contact_properties",
239
+ "resend_get_contact_property",
240
+ "resend_update_contact_property",
241
+ "resend_delete_contact_property",
242
+ "resend_create_template",
243
+ "resend_list_templates",
244
+ "resend_get_template",
245
+ "resend_update_template",
246
+ "resend_delete_template",
247
+ "resend_duplicate_template",
248
+ "resend_publish_template",
249
+ "resend_create_topic",
250
+ "resend_list_topics",
251
+ "resend_get_topic",
252
+ "resend_update_topic",
253
+ "resend_delete_topic",
254
+ "resend_create_webhook",
255
+ "resend_list_webhooks",
256
+ "resend_get_webhook",
257
+ "resend_update_webhook",
258
+ "resend_delete_webhook"
259
+ ],
260
+ "actions": [
261
+ "resend_sync",
262
+ "resend_export",
263
+ "resend_report"
264
+ ],
265
+ "triggers": [
266
+ "resend_created",
267
+ "resend_updated",
268
+ "resend_deleted",
269
+ "resend_webhook"
270
+ ]
271
+ },
272
+ {
273
+ "id": "twilio",
274
+ "name": "Twilio",
275
+ "category": "communication",
276
+ "description": "SMS and voice — send text messages, make calls",
277
+ "tools": [
278
+ "twilio_send_sms",
279
+ "twilio_list_messages",
280
+ "twilio_make_call"
90
281
  ],
91
- "rateLimit": { "requests": 100, "window": 1 }
282
+ "actions": [
283
+ "sms_blast",
284
+ "call_campaign"
285
+ ],
286
+ "triggers": [
287
+ "sms_received",
288
+ "call_completed",
289
+ "voicemail_received"
290
+ ]
92
291
  },
93
292
  {
94
293
  "id": "slack",
95
294
  "name": "Slack",
96
295
  "category": "communication",
97
- "description": "Messaging, channels, files, users",
296
+ "description": "Team messaging — channels, messages, threads, users, files, reactions, bookmarks, reminders, canvases, search, scheduled messages, pins",
98
297
  "tools": [
99
298
  "slack_send_message",
299
+ "slack_update_message",
300
+ "slack_delete_message",
301
+ "slack_schedule_message",
302
+ "slack_get_permalink",
303
+ "slack_reply_to_thread",
304
+ "slack_get_thread_replies",
100
305
  "slack_list_channels",
101
306
  "slack_create_channel",
307
+ "slack_archive_channel",
308
+ "slack_unarchive_channel",
309
+ "slack_rename_channel",
310
+ "slack_set_channel_topic",
311
+ "slack_set_channel_purpose",
312
+ "slack_invite_to_channel",
313
+ "slack_kick_from_channel",
314
+ "slack_channel_history",
315
+ "slack_channel_info",
316
+ "slack_join_channel",
317
+ "slack_leave_channel",
318
+ "slack_list_users",
319
+ "slack_get_user",
320
+ "slack_get_user_profile",
321
+ "slack_set_user_status",
102
322
  "slack_upload_file",
103
- "slack_get_users",
104
- "slack_set_topic",
323
+ "slack_list_files",
324
+ "slack_delete_file",
325
+ "slack_share_file",
105
326
  "slack_add_reaction",
327
+ "slack_remove_reaction",
328
+ "slack_list_reactions",
329
+ "slack_pin_message",
330
+ "slack_unpin_message",
331
+ "slack_list_pins",
332
+ "slack_add_bookmark",
333
+ "slack_remove_bookmark",
334
+ "slack_list_bookmarks",
335
+ "slack_add_reminder",
336
+ "slack_list_reminders",
337
+ "slack_delete_reminder",
106
338
  "slack_search_messages",
107
- "slack_get_channel_history",
108
- "slack_post_thread_reply"
339
+ "slack_search_files",
340
+ "slack_create_canvas",
341
+ "slack_update_canvas",
342
+ "slack_get_team_info"
109
343
  ],
110
344
  "actions": [
111
345
  "channel_notify",
@@ -115,25 +349,16 @@
115
349
  "message_received",
116
350
  "channel_created",
117
351
  "reaction_added"
118
- ],
119
- "rateLimit": { "requests": 50, "window": 60 }
352
+ ]
120
353
  },
121
354
  {
122
355
  "id": "discord",
123
356
  "name": "Discord",
124
357
  "category": "communication",
125
- "description": "Servers, channels, messages, webhooks",
358
+ "description": "Community messaging — servers, channels, messages",
126
359
  "tools": [
127
360
  "discord_send_message",
128
- "discord_create_channel",
129
- "discord_get_members",
130
- "discord_send_embed",
131
- "discord_create_webhook",
132
- "discord_get_channels",
133
- "discord_add_role",
134
- "discord_remove_role",
135
- "discord_ban_member",
136
- "discord_get_messages"
361
+ "discord_list_channels"
137
362
  ],
138
363
  "actions": [
139
364
  "discord_announce",
@@ -142,25 +367,18 @@
142
367
  "triggers": [
143
368
  "member_joined",
144
369
  "message_sent"
145
- ],
146
- "rateLimit": { "requests": 50, "window": 60 }
370
+ ]
147
371
  },
148
372
  {
149
373
  "id": "openai",
150
374
  "name": "OpenAI",
151
375
  "category": "ai",
152
- "description": "GPT completions, embeddings, images, speech",
376
+ "description": "AI completions, embeddings, image generation, TTS",
153
377
  "tools": [
154
378
  "openai_chat_completion",
379
+ "openai_create_image",
155
380
  "openai_create_embedding",
156
- "openai_generate_image",
157
- "openai_text_to_speech",
158
- "openai_transcribe_audio",
159
- "openai_moderate_content",
160
- "openai_list_models",
161
- "openai_fine_tune_create",
162
- "openai_batch_create",
163
- "openai_file_upload"
381
+ "openai_text_to_speech"
164
382
  ],
165
383
  "actions": [
166
384
  "ai_summarize",
@@ -170,128 +388,19 @@
170
388
  "triggers": [
171
389
  "batch_completed",
172
390
  "fine_tune_completed"
173
- ],
174
- "rateLimit": { "requests": 60, "window": 60 }
175
- },
176
- {
177
- "id": "anthropic",
178
- "name": "Anthropic",
179
- "category": "ai",
180
- "description": "Claude completions, messages API",
181
- "tools": [
182
- "anthropic_create_message",
183
- "anthropic_stream_message",
184
- "anthropic_list_models",
185
- "anthropic_count_tokens",
186
- "anthropic_batch_create",
187
- "anthropic_batch_results"
188
- ],
189
- "actions": [
190
- "claude_analyze",
191
- "claude_generate"
192
- ],
193
- "triggers": [
194
- "batch_completed"
195
- ],
196
- "rateLimit": { "requests": 60, "window": 60 }
197
- },
198
- {
199
- "id": "twilio",
200
- "name": "Twilio",
201
- "category": "communication",
202
- "description": "SMS, voice calls, WhatsApp",
203
- "tools": [
204
- "twilio_send_sms",
205
- "twilio_send_whatsapp",
206
- "twilio_make_call",
207
- "twilio_get_messages",
208
- "twilio_get_call_logs",
209
- "twilio_lookup_phone",
210
- "twilio_create_verify",
211
- "twilio_check_verify"
212
- ],
213
- "actions": [
214
- "sms_blast",
215
- "call_campaign"
216
- ],
217
- "triggers": [
218
- "sms_received",
219
- "call_completed",
220
- "voicemail_received"
221
- ],
222
- "rateLimit": { "requests": 100, "window": 1 }
223
- },
224
- {
225
- "id": "sendgrid",
226
- "name": "SendGrid",
227
- "category": "email",
228
- "description": "Transactional email, templates, campaigns",
229
- "tools": [
230
- "sendgrid_send_email",
231
- "sendgrid_send_template",
232
- "sendgrid_create_contact",
233
- "sendgrid_add_to_list",
234
- "sendgrid_get_stats",
235
- "sendgrid_create_template",
236
- "sendgrid_validate_email",
237
- "sendgrid_get_bounces"
238
- ],
239
- "actions": [
240
- "email_campaign",
241
- "bounce_cleanup"
242
- ],
243
- "triggers": [
244
- "email_delivered",
245
- "email_opened",
246
- "email_bounced",
247
- "email_clicked"
248
- ],
249
- "rateLimit": { "requests": 100, "window": 1 }
250
- },
251
- {
252
- "id": "supabase",
253
- "name": "Supabase",
254
- "category": "database",
255
- "description": "PostgreSQL, auth, storage, realtime",
256
- "tools": [
257
- "supabase_query",
258
- "supabase_insert",
259
- "supabase_update",
260
- "supabase_delete",
261
- "supabase_rpc",
262
- "supabase_upload_file",
263
- "supabase_get_user",
264
- "supabase_create_user",
265
- "supabase_list_buckets",
266
- "supabase_subscribe_realtime"
267
- ],
268
- "actions": [
269
- "db_backup",
270
- "data_export"
271
- ],
272
- "triggers": [
273
- "row_inserted",
274
- "row_updated",
275
- "row_deleted",
276
- "auth_event"
277
- ],
278
- "rateLimit": { "requests": 100, "window": 1 }
391
+ ]
279
392
  },
280
393
  {
281
394
  "id": "airtable",
282
395
  "name": "Airtable",
283
396
  "category": "database",
284
- "description": "Bases, tables, records, views",
397
+ "description": "Spreadsheet-database — bases, tables, records",
285
398
  "tools": [
399
+ "airtable_list_bases",
286
400
  "airtable_list_records",
287
401
  "airtable_create_record",
288
402
  "airtable_update_record",
289
- "airtable_delete_record",
290
- "airtable_get_record",
291
- "airtable_search_records",
292
- "airtable_list_bases",
293
- "airtable_list_tables",
294
- "airtable_create_field"
403
+ "airtable_delete_record"
295
404
  ],
296
405
  "actions": [
297
406
  "airtable_sync",
@@ -300,24 +409,19 @@
300
409
  "triggers": [
301
410
  "record_created",
302
411
  "record_updated"
303
- ],
304
- "rateLimit": { "requests": 5, "window": 1 }
412
+ ]
305
413
  },
306
414
  {
307
415
  "id": "notion",
308
416
  "name": "Notion",
309
417
  "category": "productivity",
310
- "description": "Pages, databases, blocks, search",
418
+ "description": "Workspace — pages, databases, blocks",
311
419
  "tools": [
420
+ "notion_search",
312
421
  "notion_create_page",
313
- "notion_update_page",
314
422
  "notion_get_page",
315
423
  "notion_query_database",
316
- "notion_create_database",
317
- "notion_add_block",
318
- "notion_search",
319
- "notion_get_users",
320
- "notion_archive_page"
424
+ "notion_list_databases"
321
425
  ],
322
426
  "actions": [
323
427
  "notion_sync",
@@ -327,29 +431,19 @@
327
431
  "page_created",
328
432
  "page_updated",
329
433
  "database_item_created"
330
- ],
331
- "rateLimit": { "requests": 3, "window": 1 }
434
+ ]
332
435
  },
333
436
  {
334
437
  "id": "github",
335
438
  "name": "GitHub",
336
439
  "category": "devtools",
337
- "description": "Repos, issues, PRs, actions, releases",
440
+ "description": "Code hosting — repos, issues, pull requests, actions",
338
441
  "tools": [
442
+ "github_list_repos",
339
443
  "github_create_issue",
340
- "github_close_issue",
444
+ "github_list_issues",
341
445
  "github_create_pr",
342
- "github_merge_pr",
343
- "github_get_repo",
344
- "github_list_repos",
345
- "github_create_release",
346
- "github_get_file_contents",
347
- "github_commit_file",
348
- "github_list_branches",
349
- "github_create_branch",
350
- "github_search_code",
351
- "github_get_actions_runs",
352
- "github_trigger_workflow"
446
+ "github_list_prs"
353
447
  ],
354
448
  "actions": [
355
449
  "release_notify",
@@ -362,23 +456,15 @@
362
456
  "issue_opened",
363
457
  "release_published",
364
458
  "workflow_completed"
365
- ],
366
- "rateLimit": { "requests": 30, "window": 60 }
459
+ ]
367
460
  },
368
461
  {
369
462
  "id": "linear",
370
463
  "name": "Linear",
371
464
  "category": "devtools",
372
- "description": "Issues, projects, cycles, teams",
465
+ "description": "Issue tracking — teams, projects, issues, cycles",
373
466
  "tools": [
374
- "linear_create_issue",
375
- "linear_update_issue",
376
- "linear_list_issues",
377
- "linear_get_projects",
378
- "linear_get_teams",
379
- "linear_create_comment",
380
- "linear_search_issues",
381
- "linear_get_cycles"
467
+ "linear_graphql"
382
468
  ],
383
469
  "actions": [
384
470
  "sprint_report",
@@ -388,27 +474,20 @@
388
474
  "issue_created",
389
475
  "issue_status_changed",
390
476
  "cycle_completed"
391
- ],
392
- "rateLimit": { "requests": 60, "window": 60 }
477
+ ]
393
478
  },
394
479
  {
395
480
  "id": "shopify",
396
481
  "name": "Shopify",
397
482
  "category": "ecommerce",
398
- "description": "Products, orders, customers, inventory",
483
+ "description": "E-commerce — products, orders, customers, inventory",
399
484
  "tools": [
400
485
  "shopify_list_products",
401
486
  "shopify_create_product",
402
- "shopify_update_product",
403
487
  "shopify_list_orders",
404
488
  "shopify_get_order",
405
- "shopify_create_order",
406
489
  "shopify_list_customers",
407
- "shopify_get_inventory",
408
- "shopify_update_inventory",
409
- "shopify_create_discount",
410
- "shopify_get_analytics",
411
- "shopify_fulfill_order"
490
+ "shopify_create_customer"
412
491
  ],
413
492
  "actions": [
414
493
  "inventory_alert",
@@ -421,27 +500,20 @@
421
500
  "product_updated",
422
501
  "customer_created",
423
502
  "inventory_low"
424
- ],
425
- "rateLimit": { "requests": 40, "window": 60 }
503
+ ]
426
504
  },
427
505
  {
428
506
  "id": "hubspot",
429
507
  "name": "HubSpot",
430
508
  "category": "crm",
431
- "description": "CRM contacts, deals, companies, marketing",
509
+ "description": "CRM and marketing — contacts, companies, deals, emails",
432
510
  "tools": [
433
511
  "hubspot_create_contact",
434
- "hubspot_get_contact",
435
- "hubspot_update_contact",
512
+ "hubspot_list_contacts",
436
513
  "hubspot_search_contacts",
437
- "hubspot_create_deal",
438
- "hubspot_update_deal",
439
- "hubspot_list_deals",
440
514
  "hubspot_create_company",
441
- "hubspot_get_company",
442
- "hubspot_send_email",
443
- "hubspot_get_analytics",
444
- "hubspot_create_note"
515
+ "hubspot_create_deal",
516
+ "hubspot_list_deals"
445
517
  ],
446
518
  "actions": [
447
519
  "deal_report",
@@ -453,20 +525,40 @@
453
525
  "deal_stage_changed",
454
526
  "form_submitted",
455
527
  "email_opened"
528
+ ]
529
+ },
530
+ {
531
+ "id": "supabase",
532
+ "name": "Supabase",
533
+ "category": "database",
534
+ "description": "Backend-as-a-service — database, auth, storage, edge functions",
535
+ "tools": [
536
+ "supabase_query_table",
537
+ "supabase_insert_row",
538
+ "supabase_update_row",
539
+ "supabase_delete_row",
540
+ "supabase_list_users",
541
+ "supabase_list_buckets"
542
+ ],
543
+ "actions": [
544
+ "db_backup",
545
+ "data_export"
456
546
  ],
457
- "rateLimit": { "requests": 100, "window": 10 }
547
+ "triggers": [
548
+ "row_inserted",
549
+ "row_updated",
550
+ "row_deleted",
551
+ "auth_event"
552
+ ]
458
553
  },
459
554
  {
460
555
  "id": "calendly",
461
556
  "name": "Calendly",
462
557
  "category": "scheduling",
463
- "description": "Events, scheduling, invitees",
558
+ "description": "Scheduling — event types, bookings, availability",
464
559
  "tools": [
560
+ "calendly_list_events",
465
561
  "calendly_list_event_types",
466
- "calendly_get_events",
467
- "calendly_get_invitee",
468
- "calendly_cancel_event",
469
- "calendly_list_invitees",
470
562
  "calendly_get_user"
471
563
  ],
472
564
  "actions": [
@@ -477,23 +569,19 @@
477
569
  "event_scheduled",
478
570
  "event_cancelled",
479
571
  "invitee_created"
480
- ],
481
- "rateLimit": { "requests": 30, "window": 60 }
572
+ ]
482
573
  },
483
574
  {
484
575
  "id": "google_calendar",
485
576
  "name": "Google Calendar",
486
577
  "category": "scheduling",
487
- "description": "Events, calendars, reminders, availability",
578
+ "description": "Calendar management — events, schedules, availability",
488
579
  "tools": [
489
- "gcal_list_events",
490
- "gcal_create_event",
491
- "gcal_update_event",
492
- "gcal_delete_event",
493
- "gcal_get_freebusy",
494
- "gcal_list_calendars",
495
- "gcal_create_calendar",
496
- "gcal_quick_add"
580
+ "google_calendar_list_calendars",
581
+ "google_calendar_list_events",
582
+ "google_calendar_create_event",
583
+ "google_calendar_update_event",
584
+ "google_calendar_delete_event"
497
585
  ],
498
586
  "actions": [
499
587
  "availability_check",
@@ -503,18 +591,17 @@
503
591
  "event_created",
504
592
  "event_updated",
505
593
  "event_reminder"
506
- ],
507
- "rateLimit": { "requests": 100, "window": 60 }
594
+ ]
508
595
  },
509
596
  {
510
597
  "id": "gmail",
511
598
  "name": "Gmail",
512
599
  "category": "email",
513
- "description": "Email, threads, labels, drafts, search",
600
+ "description": "Email — send, receive, labels, threads, drafts, search",
514
601
  "tools": [
515
- "gmail_send_email",
516
602
  "gmail_list_messages",
517
603
  "gmail_get_message",
604
+ "gmail_send_message",
518
605
  "gmail_trash_message",
519
606
  "gmail_untrash_message",
520
607
  "gmail_list_threads",
@@ -524,8 +611,7 @@
524
611
  "gmail_send_draft",
525
612
  "gmail_list_labels",
526
613
  "gmail_create_label",
527
- "gmail_get_profile",
528
- "gmail_search"
614
+ "gmail_get_profile"
529
615
  ],
530
616
  "actions": [
531
617
  "email_digest",
@@ -536,25 +622,22 @@
536
622
  "email_received",
537
623
  "email_sent",
538
624
  "label_applied"
539
- ],
540
- "rateLimit": { "requests": 100, "window": 60 }
625
+ ]
541
626
  },
542
627
  {
543
628
  "id": "google_sheets",
544
629
  "name": "Google Sheets",
545
630
  "category": "database",
546
- "description": "Spreadsheets, cell values, formulas, batch operations",
631
+ "description": "Spreadsheets — read, write, append, create, format cells",
547
632
  "tools": [
548
- "gsheets_create_spreadsheet",
549
- "gsheets_get_spreadsheet",
550
- "gsheets_get_values",
551
- "gsheets_update_values",
552
- "gsheets_append_values",
553
- "gsheets_clear_values",
554
- "gsheets_batch_get",
555
- "gsheets_batch_update",
556
- "gsheets_add_sheet",
557
- "gsheets_delete_sheet"
633
+ "google_sheets_create_spreadsheet",
634
+ "google_sheets_get_spreadsheet",
635
+ "google_sheets_get_values",
636
+ "google_sheets_update_values",
637
+ "google_sheets_append_values",
638
+ "google_sheets_clear_values",
639
+ "google_sheets_batch_get",
640
+ "google_sheets_batch_update"
558
641
  ],
559
642
  "actions": [
560
643
  "sheet_sync",
@@ -565,26 +648,24 @@
565
648
  "row_added",
566
649
  "cell_updated",
567
650
  "sheet_created"
568
- ],
569
- "rateLimit": { "requests": 60, "window": 60 }
651
+ ]
570
652
  },
571
653
  {
572
654
  "id": "google_drive",
573
655
  "name": "Google Drive",
574
656
  "category": "storage",
575
- "description": "Files, folders, sharing, permissions, search",
657
+ "description": "Cloud storage — files, folders, sharing, search, permissions",
576
658
  "tools": [
577
- "gdrive_list_files",
578
- "gdrive_get_file",
579
- "gdrive_create_file",
580
- "gdrive_copy_file",
581
- "gdrive_update_file",
582
- "gdrive_delete_file",
583
- "gdrive_create_permission",
584
- "gdrive_list_permissions",
585
- "gdrive_delete_permission",
586
- "gdrive_search",
587
- "gdrive_create_folder"
659
+ "google_drive_list_files",
660
+ "google_drive_get_file",
661
+ "google_drive_create_file",
662
+ "google_drive_copy_file",
663
+ "google_drive_update_file",
664
+ "google_drive_delete_file",
665
+ "google_drive_create_permission",
666
+ "google_drive_list_permissions",
667
+ "google_drive_delete_permission",
668
+ "google_drive_generate_ids"
588
669
  ],
589
670
  "actions": [
590
671
  "backup_files",
@@ -595,14 +676,13 @@
595
676
  "file_created",
596
677
  "file_modified",
597
678
  "permission_changed"
598
- ],
599
- "rateLimit": { "requests": 100, "window": 60 }
679
+ ]
600
680
  },
601
681
  {
602
682
  "id": "jira",
603
683
  "name": "Jira",
604
684
  "category": "devtools",
605
- "description": "Issues, sprints, boards, projects, JQL search",
685
+ "description": "Project management — issues, sprints, boards, projects, epics, JQL search",
606
686
  "tools": [
607
687
  "jira_search_issues",
608
688
  "jira_create_issue",
@@ -615,10 +695,7 @@
615
695
  "jira_list_comments",
616
696
  "jira_list_projects",
617
697
  "jira_get_project",
618
- "jira_assign_issue",
619
- "jira_add_watcher",
620
- "jira_list_sprints",
621
- "jira_get_board"
698
+ "jira_assign_issue"
622
699
  ],
623
700
  "actions": [
624
701
  "sprint_report",
@@ -631,14 +708,13 @@
631
708
  "issue_transitioned",
632
709
  "sprint_started",
633
710
  "sprint_completed"
634
- ],
635
- "rateLimit": { "requests": 100, "window": 60 }
711
+ ]
636
712
  },
637
713
  {
638
714
  "id": "zendesk",
639
715
  "name": "Zendesk",
640
716
  "category": "support",
641
- "description": "Tickets, users, organizations, search, macros",
717
+ "description": "Customer support — tickets, users, organizations, search, macros",
642
718
  "tools": [
643
719
  "zendesk_list_tickets",
644
720
  "zendesk_get_ticket",
@@ -646,14 +722,12 @@
646
722
  "zendesk_update_ticket",
647
723
  "zendesk_delete_ticket",
648
724
  "zendesk_list_ticket_comments",
649
- "zendesk_add_comment",
650
725
  "zendesk_search",
651
726
  "zendesk_list_users",
652
727
  "zendesk_create_user",
653
728
  "zendesk_get_user",
654
729
  "zendesk_list_organizations",
655
- "zendesk_list_macros",
656
- "zendesk_get_ticket_metrics"
730
+ "zendesk_list_macros"
657
731
  ],
658
732
  "actions": [
659
733
  "ticket_report",
@@ -666,14 +740,13 @@
666
740
  "ticket_solved",
667
741
  "ticket_overdue",
668
742
  "satisfaction_rated"
669
- ],
670
- "rateLimit": { "requests": 100, "window": 60 }
743
+ ]
671
744
  },
672
745
  {
673
746
  "id": "mailchimp",
674
747
  "name": "Mailchimp",
675
748
  "category": "marketing",
676
- "description": "Audiences, campaigns, automations, templates, analytics",
749
+ "description": "Email marketing — audiences, campaigns, automations, templates, analytics",
677
750
  "tools": [
678
751
  "mailchimp_list_audiences",
679
752
  "mailchimp_get_audience",
@@ -699,14 +772,13 @@
699
772
  "campaign_sent",
700
773
  "email_opened",
701
774
  "email_clicked"
702
- ],
703
- "rateLimit": { "requests": 10, "window": 1 }
775
+ ]
704
776
  },
705
777
  {
706
778
  "id": "zoom",
707
779
  "name": "Zoom",
708
780
  "category": "communication",
709
- "description": "Meetings, recordings, webinars, users",
781
+ "description": "Video conferencing — meetings, webinars, recordings, users",
710
782
  "tools": [
711
783
  "zoom_list_meetings",
712
784
  "zoom_create_meeting",
@@ -728,30 +800,29 @@
728
800
  "meeting_ended",
729
801
  "recording_completed",
730
802
  "participant_joined"
731
- ],
732
- "rateLimit": { "requests": 30, "window": 1 }
803
+ ]
733
804
  },
734
805
  {
735
806
  "id": "microsoft",
736
807
  "name": "Microsoft 365",
737
808
  "category": "productivity",
738
- "description": "Outlook mail, Teams, OneDrive, calendar via Graph API",
739
- "tools": [
740
- "ms_send_mail",
741
- "ms_list_messages",
742
- "ms_get_message",
743
- "ms_delete_message",
744
- "ms_list_events",
745
- "ms_create_event",
746
- "ms_update_event",
747
- "ms_delete_event",
748
- "ms_list_drive_items",
749
- "ms_get_drive_item",
750
- "ms_search_drive",
751
- "ms_list_teams",
752
- "ms_list_channels",
753
- "ms_send_channel_message",
754
- "ms_get_user"
809
+ "description": "Outlook mail, Teams messages, OneDrive files, calendar via Microsoft Graph API",
810
+ "tools": [
811
+ "microsoft_send_mail",
812
+ "microsoft_list_messages",
813
+ "microsoft_get_message",
814
+ "microsoft_delete_message",
815
+ "microsoft_list_events",
816
+ "microsoft_create_event",
817
+ "microsoft_update_event",
818
+ "microsoft_delete_event",
819
+ "microsoft_list_drive_items",
820
+ "microsoft_get_drive_item",
821
+ "microsoft_search_drive",
822
+ "microsoft_list_teams",
823
+ "microsoft_list_channels",
824
+ "microsoft_send_channel_message",
825
+ "microsoft_get_user"
755
826
  ],
756
827
  "actions": [
757
828
  "mail_digest",
@@ -763,14 +834,13 @@
763
834
  "event_created",
764
835
  "file_modified",
765
836
  "teams_message_received"
766
- ],
767
- "rateLimit": { "requests": 100, "window": 60 }
837
+ ]
768
838
  },
769
839
  {
770
840
  "id": "mongodb",
771
841
  "name": "MongoDB",
772
842
  "category": "database",
773
- "description": "NoSQL documents, queries, aggregation via Atlas Data API",
843
+ "description": "NoSQL database — find, insert, update, delete, aggregate via Atlas Data API",
774
844
  "tools": [
775
845
  "mongodb_find_one",
776
846
  "mongodb_find_many",
@@ -779,8 +849,7 @@
779
849
  "mongodb_update_one",
780
850
  "mongodb_update_many",
781
851
  "mongodb_delete_one",
782
- "mongodb_aggregate",
783
- "mongodb_count"
852
+ "mongodb_aggregate"
784
853
  ],
785
854
  "actions": [
786
855
  "data_export",
@@ -791,14 +860,13 @@
791
860
  "document_inserted",
792
861
  "document_updated",
793
862
  "document_deleted"
794
- ],
795
- "rateLimit": { "requests": 100, "window": 1 }
863
+ ]
796
864
  },
797
865
  {
798
866
  "id": "quickbooks",
799
867
  "name": "QuickBooks",
800
868
  "category": "accounting",
801
- "description": "Invoices, customers, payments, accounts, reports",
869
+ "description": "Accounting — invoices, customers, payments, bills, estimates, items, reports",
802
870
  "tools": [
803
871
  "quickbooks_create_invoice",
804
872
  "quickbooks_list_invoices",
@@ -832,14 +900,13 @@
832
900
  "invoice_created",
833
901
  "invoice_overdue",
834
902
  "customer_created"
835
- ],
836
- "rateLimit": { "requests": 100, "window": 60 }
903
+ ]
837
904
  },
838
905
  {
839
906
  "id": "asana",
840
907
  "name": "Asana",
841
908
  "category": "project",
842
- "description": "Tasks, projects, sections, workspaces, tags, teams",
909
+ "description": "Project management — tasks, projects, sections, workspaces, tags, teams",
843
910
  "tools": [
844
911
  "asana_create_task",
845
912
  "asana_list_tasks",
@@ -867,14 +934,13 @@
867
934
  "task_completed",
868
935
  "task_assigned",
869
936
  "project_updated"
870
- ],
871
- "rateLimit": { "requests": 100, "window": 60 }
937
+ ]
872
938
  },
873
939
  {
874
940
  "id": "intercom",
875
941
  "name": "Intercom",
876
942
  "category": "support",
877
- "description": "Contacts, conversations, companies, tags, articles",
943
+ "description": "Customer messaging — contacts, conversations, companies, tags, articles",
878
944
  "tools": [
879
945
  "intercom_create_contact",
880
946
  "intercom_list_contacts",
@@ -901,14 +967,13 @@
901
967
  "conversation_replied",
902
968
  "contact_created",
903
969
  "tag_applied"
904
- ],
905
- "rateLimit": { "requests": 100, "window": 60 }
970
+ ]
906
971
  },
907
972
  {
908
973
  "id": "dropbox",
909
974
  "name": "Dropbox",
910
975
  "category": "storage",
911
- "description": "Files, folders, sharing, search, metadata",
976
+ "description": "Cloud storage — files, folders, sharing, search",
912
977
  "tools": [
913
978
  "dropbox_list_folder",
914
979
  "dropbox_list_folder_continue",
@@ -929,18 +994,17 @@
929
994
  "file_uploaded",
930
995
  "file_modified",
931
996
  "folder_created"
932
- ],
933
- "rateLimit": { "requests": 100, "window": 60 }
997
+ ]
934
998
  },
935
999
  {
936
1000
  "id": "whatsapp",
937
- "name": "WhatsApp",
1001
+ "name": "WhatsApp Business",
938
1002
  "category": "communication",
939
- "description": "Text messages, templates, media via Business API",
1003
+ "description": "Business messaging — send texts, templates, media via WhatsApp Business API",
940
1004
  "tools": [
941
- "whatsapp_send_text",
942
- "whatsapp_send_template",
943
- "whatsapp_send_media",
1005
+ "whatsapp_send_text_message",
1006
+ "whatsapp_send_template_message",
1007
+ "whatsapp_send_media_message",
944
1008
  "whatsapp_list_templates",
945
1009
  "whatsapp_upload_media",
946
1010
  "whatsapp_get_media_url"
@@ -952,14 +1016,13 @@
952
1016
  "message_received",
953
1017
  "message_delivered",
954
1018
  "message_read"
955
- ],
956
- "rateLimit": { "requests": 80, "window": 60 }
1019
+ ]
957
1020
  },
958
1021
  {
959
1022
  "id": "instagram",
960
1023
  "name": "Instagram",
961
1024
  "category": "social",
962
- "description": "Media, comments, stories, insights, profile management",
1025
+ "description": "Social media — posts, comments, insights, stories via Instagram Graph API",
963
1026
  "tools": [
964
1027
  "instagram_list_media",
965
1028
  "instagram_get_media",
@@ -980,27 +1043,26 @@
980
1043
  "comment_received",
981
1044
  "mention_received",
982
1045
  "media_published"
983
- ],
984
- "rateLimit": { "requests": 60, "window": 60 }
1046
+ ]
985
1047
  },
986
1048
  {
987
1049
  "id": "twitter",
988
- "name": "Twitter / X",
1050
+ "name": "X (Twitter)",
989
1051
  "category": "social",
990
- "description": "Tweets, users, followers, lists, DMs, engagement",
1052
+ "description": "Social platform — tweets, users, followers, lists, direct messages",
991
1053
  "tools": [
992
1054
  "twitter_create_tweet",
993
1055
  "twitter_delete_tweet",
1056
+ "twitter_get_tweet",
994
1057
  "twitter_search_tweets",
995
1058
  "twitter_get_user",
996
1059
  "twitter_get_user_by_username",
1060
+ "twitter_get_user_tweets",
997
1061
  "twitter_get_followers",
998
1062
  "twitter_get_following",
999
1063
  "twitter_create_list",
1000
1064
  "twitter_get_lists",
1001
1065
  "twitter_send_dm",
1002
- "twitter_get_tweet",
1003
- "twitter_get_user_tweets",
1004
1066
  "twitter_like_tweet",
1005
1067
  "twitter_unlike_tweet",
1006
1068
  "twitter_retweet",
@@ -1014,14 +1076,13 @@
1014
1076
  "mention_received",
1015
1077
  "dm_received",
1016
1078
  "follower_gained"
1017
- ],
1018
- "rateLimit": { "requests": 50, "window": 60 }
1079
+ ]
1019
1080
  },
1020
1081
  {
1021
1082
  "id": "tiktok",
1022
- "name": "TikTok",
1083
+ "name": "TikTok Business",
1023
1084
  "category": "social",
1024
- "description": "Videos, campaigns, ad groups, ads, reporting",
1085
+ "description": "Social video videos, ads, campaigns, reports via TikTok Business API",
1025
1086
  "tools": [
1026
1087
  "tiktok_list_videos",
1027
1088
  "tiktok_get_video_info",
@@ -1042,14 +1103,13 @@
1042
1103
  "triggers": [
1043
1104
  "video_published",
1044
1105
  "campaign_completed"
1045
- ],
1046
- "rateLimit": { "requests": 60, "window": 60 }
1106
+ ]
1047
1107
  },
1048
1108
  {
1049
1109
  "id": "google_ads",
1050
1110
  "name": "Google Ads",
1051
1111
  "category": "advertising",
1052
- "description": "Campaigns, ad groups, ads, search, reporting",
1112
+ "description": "Search and display advertising — campaigns, ad groups, ads, keywords, reports",
1053
1113
  "tools": [
1054
1114
  "google_ads_search",
1055
1115
  "google_ads_mutate_campaigns",
@@ -1068,14 +1128,13 @@
1068
1128
  "triggers": [
1069
1129
  "campaign_budget_exceeded",
1070
1130
  "conversion_received"
1071
- ],
1072
- "rateLimit": { "requests": 100, "window": 60 }
1131
+ ]
1073
1132
  },
1074
1133
  {
1075
1134
  "id": "facebook_ads",
1076
1135
  "name": "Facebook Ads",
1077
1136
  "category": "advertising",
1078
- "description": "Campaigns, adsets, ads, audiences, insights",
1137
+ "description": "Social advertising — campaigns, ad sets, ads, insights, audiences",
1079
1138
  "tools": [
1080
1139
  "facebook_ads_create_campaign",
1081
1140
  "facebook_ads_list_campaigns",
@@ -1097,14 +1156,13 @@
1097
1156
  "campaign_completed",
1098
1157
  "budget_exceeded",
1099
1158
  "lead_generated"
1100
- ],
1101
- "rateLimit": { "requests": 100, "window": 60 }
1159
+ ]
1102
1160
  },
1103
1161
  {
1104
1162
  "id": "plaid",
1105
1163
  "name": "Plaid",
1106
1164
  "category": "finance",
1107
- "description": "Bank accounts, transactions, balances, identity, auth",
1165
+ "description": "Financial data — bank accounts, transactions, identity, auth via Plaid API",
1108
1166
  "tools": [
1109
1167
  "plaid_create_link_token",
1110
1168
  "plaid_exchange_public_token",
@@ -1123,32 +1181,71 @@
1123
1181
  "triggers": [
1124
1182
  "transactions_updated",
1125
1183
  "balance_changed"
1126
- ],
1127
- "rateLimit": { "requests": 100, "window": 60 }
1184
+ ]
1128
1185
  },
1129
1186
  {
1130
1187
  "id": "square",
1131
1188
  "name": "Square",
1132
1189
  "category": "payments",
1133
- "description": "Payments, customers, orders, catalog, inventory",
1190
+ "description": "Payments, commerce, POS, invoices, subscriptions, loyalty, gift cards, bookings, team, locations — full Square ecosystem",
1134
1191
  "tools": [
1135
1192
  "square_create_payment",
1136
1193
  "square_list_payments",
1137
1194
  "square_get_payment",
1195
+ "square_complete_payment",
1138
1196
  "square_create_refund",
1197
+ "square_list_refunds",
1139
1198
  "square_create_customer",
1140
1199
  "square_list_customers",
1141
1200
  "square_get_customer",
1142
1201
  "square_update_customer",
1143
1202
  "square_delete_customer",
1203
+ "square_search_customers",
1144
1204
  "square_create_order",
1145
- "square_list_orders",
1205
+ "square_search_orders",
1146
1206
  "square_get_order",
1207
+ "square_update_order",
1208
+ "square_pay_order",
1147
1209
  "square_create_catalog_object",
1148
1210
  "square_list_catalog",
1149
1211
  "square_search_catalog",
1212
+ "square_update_catalog_object",
1213
+ "square_delete_catalog_object",
1150
1214
  "square_get_inventory",
1151
- "square_adjust_inventory"
1215
+ "square_adjust_inventory",
1216
+ "square_transfer_inventory",
1217
+ "square_create_invoice",
1218
+ "square_list_invoices",
1219
+ "square_get_invoice",
1220
+ "square_update_invoice",
1221
+ "square_publish_invoice",
1222
+ "square_cancel_invoice",
1223
+ "square_create_subscription",
1224
+ "square_list_subscriptions",
1225
+ "square_get_subscription",
1226
+ "square_update_subscription",
1227
+ "square_cancel_subscription",
1228
+ "square_create_loyalty_account",
1229
+ "square_search_loyalty_accounts",
1230
+ "square_accumulate_loyalty",
1231
+ "square_redeem_loyalty",
1232
+ "square_create_gift_card",
1233
+ "square_list_gift_cards",
1234
+ "square_get_gift_card",
1235
+ "square_link_gift_card",
1236
+ "square_create_booking",
1237
+ "square_list_bookings",
1238
+ "square_get_booking",
1239
+ "square_update_booking",
1240
+ "square_cancel_booking",
1241
+ "square_create_team_member",
1242
+ "square_search_team_members",
1243
+ "square_get_team_member",
1244
+ "square_update_team_member",
1245
+ "square_list_locations",
1246
+ "square_get_location",
1247
+ "square_create_location",
1248
+ "square_update_location"
1152
1249
  ],
1153
1250
  "actions": [
1154
1251
  "square_sync",
@@ -1158,14 +1255,44 @@
1158
1255
  "payment_completed",
1159
1256
  "order_created",
1160
1257
  "inventory_updated"
1258
+ ]
1259
+ },
1260
+ {
1261
+ "id": "woocommerce",
1262
+ "name": "WooCommerce",
1263
+ "category": "ecommerce",
1264
+ "description": "WordPress e-commerce — products, orders, customers, coupons, reports",
1265
+ "tools": [
1266
+ "woocommerce_list_products",
1267
+ "woocommerce_create_product",
1268
+ "woocommerce_update_product",
1269
+ "woocommerce_get_product",
1270
+ "woocommerce_list_orders",
1271
+ "woocommerce_create_order",
1272
+ "woocommerce_update_order",
1273
+ "woocommerce_list_customers",
1274
+ "woocommerce_create_customer",
1275
+ "woocommerce_list_coupons",
1276
+ "woocommerce_create_coupon",
1277
+ "woocommerce_get_reports"
1278
+ ],
1279
+ "actions": [
1280
+ "woocommerce_sync",
1281
+ "woocommerce_export",
1282
+ "woocommerce_report"
1161
1283
  ],
1162
- "rateLimit": { "requests": 100, "window": 60 }
1284
+ "triggers": [
1285
+ "woocommerce_created",
1286
+ "woocommerce_updated",
1287
+ "woocommerce_deleted",
1288
+ "woocommerce_webhook"
1289
+ ]
1163
1290
  },
1164
1291
  {
1165
1292
  "id": "tiktok_ads",
1166
1293
  "name": "TikTok Ads",
1167
1294
  "category": "advertising",
1168
- "description": "Ad campaigns, ad groups, ads, audiences, reporting",
1295
+ "description": "TikTok advertising — campaigns, ad groups, ads, reports, audiences",
1169
1296
  "tools": [
1170
1297
  "tiktok_ads_create_campaign",
1171
1298
  "tiktok_ads_list_campaigns",
@@ -1186,14 +1313,13 @@
1186
1313
  "triggers": [
1187
1314
  "campaign_completed",
1188
1315
  "budget_exhausted"
1189
- ],
1190
- "rateLimit": { "requests": 60, "window": 60 }
1316
+ ]
1191
1317
  },
1192
1318
  {
1193
1319
  "id": "x_ads",
1194
1320
  "name": "X Ads",
1195
1321
  "category": "advertising",
1196
- "description": "Campaigns, line items, promoted tweets, audiences, stats",
1322
+ "description": "X (Twitter) advertising — campaigns, line items, promoted tweets, reports, audiences",
1197
1323
  "tools": [
1198
1324
  "x_ads_list_campaigns",
1199
1325
  "x_ads_create_campaign",
@@ -1213,14 +1339,13 @@
1213
1339
  "triggers": [
1214
1340
  "campaign_completed",
1215
1341
  "impression_goal_reached"
1216
- ],
1217
- "rateLimit": { "requests": 60, "window": 60 }
1342
+ ]
1218
1343
  },
1219
1344
  {
1220
1345
  "id": "linkedin_ads",
1221
1346
  "name": "LinkedIn Ads",
1222
1347
  "category": "advertising",
1223
- "description": "Campaigns, campaign groups, creatives, audiences, analytics",
1348
+ "description": "Professional advertising — campaigns, campaign groups, creatives, reports, audiences",
1224
1349
  "tools": [
1225
1350
  "linkedin_ads_list_campaigns",
1226
1351
  "linkedin_ads_create_campaign",
@@ -1240,14 +1365,13 @@
1240
1365
  "triggers": [
1241
1366
  "campaign_completed",
1242
1367
  "lead_form_submitted"
1243
- ],
1244
- "rateLimit": { "requests": 60, "window": 60 }
1368
+ ]
1245
1369
  },
1246
1370
  {
1247
1371
  "id": "instagram_ads",
1248
1372
  "name": "Instagram Ads",
1249
1373
  "category": "advertising",
1250
- "description": "Campaigns, adsets, ads, insights, previews",
1374
+ "description": "Instagram advertising — campaigns, ad sets, ads, insights via Facebook Marketing API",
1251
1375
  "tools": [
1252
1376
  "instagram_ads_create_campaign",
1253
1377
  "instagram_ads_list_campaigns",
@@ -1264,14 +1388,13 @@
1264
1388
  "triggers": [
1265
1389
  "campaign_completed",
1266
1390
  "engagement_spike"
1267
- ],
1268
- "rateLimit": { "requests": 60, "window": 60 }
1391
+ ]
1269
1392
  },
1270
1393
  {
1271
1394
  "id": "smartlead",
1272
- "name": "SmartLead",
1395
+ "name": "Smartlead",
1273
1396
  "category": "marketing",
1274
- "description": "Email campaigns, leads, email accounts, sequences, stats",
1397
+ "description": "Cold email outreach — campaigns, leads, sequences, email accounts",
1275
1398
  "tools": [
1276
1399
  "smartlead_create_campaign",
1277
1400
  "smartlead_list_campaigns",
@@ -1294,14 +1417,13 @@
1294
1417
  "email_opened",
1295
1418
  "email_replied",
1296
1419
  "lead_bounced"
1297
- ],
1298
- "rateLimit": { "requests": 60, "window": 60 }
1420
+ ]
1299
1421
  },
1300
1422
  {
1301
1423
  "id": "zapier",
1302
1424
  "name": "Zapier",
1303
1425
  "category": "automation",
1304
- "description": "Zaps, actions, triggers, automation management",
1426
+ "description": "Workflow automation — zaps, actions (limited API, most interaction via webhooks)",
1305
1427
  "tools": [
1306
1428
  "zapier_list_zaps",
1307
1429
  "zapier_get_zap",
@@ -1315,14 +1437,13 @@
1315
1437
  "triggers": [
1316
1438
  "zap_triggered",
1317
1439
  "zap_error"
1318
- ],
1319
- "rateLimit": { "requests": 30, "window": 60 }
1440
+ ]
1320
1441
  },
1321
1442
  {
1322
1443
  "id": "mulesoft",
1323
1444
  "name": "MuleSoft",
1324
1445
  "category": "integration",
1325
- "description": "Organizations, environments, APIs, applications, deployments",
1446
+ "description": "Integration platform APIs, applications, environments via Anypoint Platform",
1326
1447
  "tools": [
1327
1448
  "mulesoft_list_organizations",
1328
1449
  "mulesoft_list_environments",
@@ -1338,14 +1459,13 @@
1338
1459
  "triggers": [
1339
1460
  "deployment_completed",
1340
1461
  "api_error"
1341
- ],
1342
- "rateLimit": { "requests": 60, "window": 60 }
1462
+ ]
1343
1463
  },
1344
1464
  {
1345
1465
  "id": "azure",
1346
- "name": "Azure",
1466
+ "name": "Microsoft Azure",
1347
1467
  "category": "cloud",
1348
- "description": "Subscriptions, resource groups, storage, VMs, management",
1468
+ "description": "Cloud infrastructure — resources, resource groups, storage, VMs via Azure Resource Manager",
1349
1469
  "tools": [
1350
1470
  "azure_list_subscriptions",
1351
1471
  "azure_list_resource_groups",
@@ -1367,34 +1487,109 @@
1367
1487
  "resource_created",
1368
1488
  "vm_state_changed",
1369
1489
  "alert_triggered"
1370
- ],
1371
- "rateLimit": { "requests": 100, "window": 60 }
1490
+ ]
1372
1491
  },
1373
1492
  {
1374
1493
  "id": "pipedrive",
1375
1494
  "name": "Pipedrive",
1376
1495
  "category": "crm",
1377
- "description": "Deals, persons, organizations, activities, pipelines, notes",
1496
+ "description": "Sales CRM — deals, persons, organizations, activities, pipelines, products, leads, goals, projects, files, mail, webhooks, subscriptions, notes, stages, users",
1378
1497
  "tools": [
1379
1498
  "pipedrive_create_deal",
1380
1499
  "pipedrive_list_deals",
1381
1500
  "pipedrive_get_deal",
1382
1501
  "pipedrive_update_deal",
1383
1502
  "pipedrive_delete_deal",
1503
+ "pipedrive_search_deals",
1504
+ "pipedrive_merge_deals",
1505
+ "pipedrive_duplicate_deal",
1506
+ "pipedrive_list_deal_activities",
1507
+ "pipedrive_list_deal_files",
1508
+ "pipedrive_list_deal_products",
1509
+ "pipedrive_add_deal_product",
1510
+ "pipedrive_list_deal_participants",
1511
+ "pipedrive_add_deal_participant",
1512
+ "pipedrive_list_deal_followers",
1384
1513
  "pipedrive_create_person",
1385
1514
  "pipedrive_list_persons",
1386
1515
  "pipedrive_get_person",
1387
1516
  "pipedrive_update_person",
1388
1517
  "pipedrive_delete_person",
1518
+ "pipedrive_search_persons",
1519
+ "pipedrive_merge_persons",
1520
+ "pipedrive_list_person_deals",
1521
+ "pipedrive_list_person_activities",
1389
1522
  "pipedrive_create_organization",
1390
1523
  "pipedrive_list_organizations",
1524
+ "pipedrive_get_organization",
1525
+ "pipedrive_update_organization",
1526
+ "pipedrive_delete_organization",
1527
+ "pipedrive_search_organizations",
1528
+ "pipedrive_merge_organizations",
1391
1529
  "pipedrive_create_activity",
1392
1530
  "pipedrive_list_activities",
1531
+ "pipedrive_get_activity",
1532
+ "pipedrive_update_activity",
1533
+ "pipedrive_delete_activity",
1393
1534
  "pipedrive_list_pipelines",
1394
1535
  "pipedrive_get_pipeline",
1536
+ "pipedrive_create_pipeline",
1537
+ "pipedrive_update_pipeline",
1538
+ "pipedrive_delete_pipeline",
1539
+ "pipedrive_list_stages",
1540
+ "pipedrive_get_stage",
1541
+ "pipedrive_create_stage",
1542
+ "pipedrive_update_stage",
1543
+ "pipedrive_delete_stage",
1544
+ "pipedrive_list_stage_deals",
1545
+ "pipedrive_create_product",
1546
+ "pipedrive_list_products",
1547
+ "pipedrive_get_product",
1548
+ "pipedrive_update_product",
1549
+ "pipedrive_delete_product",
1550
+ "pipedrive_search_products",
1551
+ "pipedrive_create_lead",
1552
+ "pipedrive_list_leads",
1553
+ "pipedrive_get_lead",
1554
+ "pipedrive_update_lead",
1555
+ "pipedrive_delete_lead",
1395
1556
  "pipedrive_create_note",
1396
1557
  "pipedrive_list_notes",
1397
- "pipedrive_search_items"
1558
+ "pipedrive_get_note",
1559
+ "pipedrive_update_note",
1560
+ "pipedrive_delete_note",
1561
+ "pipedrive_list_files",
1562
+ "pipedrive_get_file",
1563
+ "pipedrive_delete_file",
1564
+ "pipedrive_list_mail_threads",
1565
+ "pipedrive_get_mail_thread",
1566
+ "pipedrive_list_mail_messages",
1567
+ "pipedrive_create_goal",
1568
+ "pipedrive_list_goals",
1569
+ "pipedrive_get_goal",
1570
+ "pipedrive_update_goal",
1571
+ "pipedrive_delete_goal",
1572
+ "pipedrive_create_project",
1573
+ "pipedrive_list_projects",
1574
+ "pipedrive_get_project",
1575
+ "pipedrive_update_project",
1576
+ "pipedrive_create_webhook",
1577
+ "pipedrive_list_webhooks",
1578
+ "pipedrive_delete_webhook",
1579
+ "pipedrive_create_subscription",
1580
+ "pipedrive_list_subscriptions",
1581
+ "pipedrive_get_subscription",
1582
+ "pipedrive_update_subscription",
1583
+ "pipedrive_cancel_subscription",
1584
+ "pipedrive_list_users",
1585
+ "pipedrive_get_user",
1586
+ "pipedrive_update_user",
1587
+ "pipedrive_search_items",
1588
+ "pipedrive_search_field",
1589
+ "pipedrive_list_filters",
1590
+ "pipedrive_get_filter",
1591
+ "pipedrive_create_filter",
1592
+ "pipedrive_list_recents"
1398
1593
  ],
1399
1594
  "actions": [
1400
1595
  "pipedrive_sync",
@@ -1407,23 +1602,64 @@
1407
1602
  "deal_won",
1408
1603
  "deal_lost",
1409
1604
  "person_created"
1410
- ],
1411
- "rateLimit": { "requests": 100, "window": 60 }
1605
+ ]
1412
1606
  },
1413
1607
  {
1414
1608
  "id": "linkedin",
1415
1609
  "name": "LinkedIn",
1416
1610
  "category": "social",
1417
- "description": "Posts, profiles, connections, organizations, images",
1611
+ "description": "Professional network — profile, posts, comments, likes, organizations, page analytics, events, advertising, ad reporting via LinkedIn API v2",
1418
1612
  "tools": [
1419
- "linkedin_create_post",
1420
1613
  "linkedin_get_profile",
1421
- "linkedin_list_connections",
1422
- "linkedin_get_organization",
1423
- "linkedin_list_org_posts",
1424
- "linkedin_delete_post",
1614
+ "linkedin_get_email",
1615
+ "linkedin_get_connections_size",
1616
+ "linkedin_get_verification",
1617
+ "linkedin_get_profile_pictures",
1618
+ "linkedin_create_post",
1425
1619
  "linkedin_get_post",
1426
- "linkedin_upload_image"
1620
+ "linkedin_delete_post",
1621
+ "linkedin_add_comment",
1622
+ "linkedin_list_comments",
1623
+ "linkedin_like_post",
1624
+ "linkedin_unlike_post",
1625
+ "linkedin_list_shares",
1626
+ "linkedin_upload_image",
1627
+ "linkedin_upload_video",
1628
+ "linkedin_get_organization",
1629
+ "linkedin_list_admin_orgs",
1630
+ "linkedin_create_org_post",
1631
+ "linkedin_get_page_statistics",
1632
+ "linkedin_get_follower_statistics",
1633
+ "linkedin_get_share_statistics",
1634
+ "linkedin_get_follower_count",
1635
+ "linkedin_update_organization",
1636
+ "linkedin_get_brand_pages",
1637
+ "linkedin_get_visitor_statistics",
1638
+ "linkedin_list_ad_accounts",
1639
+ "linkedin_get_ad_account",
1640
+ "linkedin_create_campaign_group",
1641
+ "linkedin_list_campaign_groups",
1642
+ "linkedin_create_campaign",
1643
+ "linkedin_list_campaigns",
1644
+ "linkedin_update_campaign",
1645
+ "linkedin_create_creative",
1646
+ "linkedin_list_creatives",
1647
+ "linkedin_update_creative",
1648
+ "linkedin_get_ad_analytics",
1649
+ "linkedin_get_budget_pricing",
1650
+ "linkedin_create_sponsored_content",
1651
+ "linkedin_get_targeting_facets",
1652
+ "linkedin_get_form_responses",
1653
+ "linkedin_get_performance_metrics",
1654
+ "linkedin_get_aggregate_statistics",
1655
+ "linkedin_get_conversion_tracking",
1656
+ "linkedin_get_budget_reports",
1657
+ "linkedin_get_inmail_analytics",
1658
+ "linkedin_create_event",
1659
+ "linkedin_get_event",
1660
+ "linkedin_update_event",
1661
+ "linkedin_delete_event",
1662
+ "linkedin_list_event_attendees"
1427
1663
  ],
1428
1664
  "actions": [
1429
1665
  "linkedin_schedule_post",
@@ -1433,31 +1669,1381 @@
1433
1669
  "post_engagement",
1434
1670
  "connection_accepted",
1435
1671
  "mention_received"
1672
+ ]
1673
+ },
1674
+ {
1675
+ "id": "cloudflare",
1676
+ "name": "Cloudflare",
1677
+ "category": "cloud",
1678
+ "description": "Edge computing & CDN — Workers, KV, R2 storage, D1 database, DNS, WAF, DDoS protection, analytics",
1679
+ "tools": [
1680
+ "cloudflare_list_zones",
1681
+ "cloudflare_get_zone",
1682
+ "cloudflare_list_dns_records",
1683
+ "cloudflare_create_dns_record",
1684
+ "cloudflare_update_dns_record",
1685
+ "cloudflare_delete_dns_record",
1686
+ "cloudflare_list_workers",
1687
+ "cloudflare_get_worker",
1688
+ "cloudflare_delete_worker",
1689
+ "cloudflare_list_kv_namespaces",
1690
+ "cloudflare_create_kv_namespace",
1691
+ "cloudflare_read_kv_value",
1692
+ "cloudflare_write_kv_value",
1693
+ "cloudflare_delete_kv_value",
1694
+ "cloudflare_list_r2_buckets",
1695
+ "cloudflare_create_r2_bucket",
1696
+ "cloudflare_list_d1_databases",
1697
+ "cloudflare_create_d1_database",
1698
+ "cloudflare_query_d1",
1699
+ "cloudflare_list_pages_projects",
1700
+ "cloudflare_get_zone_analytics"
1436
1701
  ],
1437
- "rateLimit": { "requests": 60, "window": 60 }
1438
- }
1439
- ],
1440
- "categories": {
1441
- "crm": { "label": "CRM", "icon": "users" },
1442
- "payments": { "label": "Payments", "icon": "credit-card" },
1443
- "communication": { "label": "Communication", "icon": "message-circle" },
1444
- "ai": { "label": "AI", "icon": "brain" },
1445
- "email": { "label": "Email", "icon": "mail" },
1446
- "database": { "label": "Database", "icon": "database" },
1447
- "productivity": { "label": "Productivity", "icon": "layout" },
1448
- "devtools": { "label": "Dev Tools", "icon": "code" },
1449
- "ecommerce": { "label": "E-Commerce", "icon": "shopping-cart" },
1450
- "scheduling": { "label": "Scheduling", "icon": "calendar" },
1451
- "storage": { "label": "Storage", "icon": "hard-drive" },
1452
- "support": { "label": "Support", "icon": "headphones" },
1453
- "marketing": { "label": "Marketing", "icon": "megaphone" },
1454
- "accounting": { "label": "Accounting", "icon": "calculator" },
1455
- "advertising": { "label": "Advertising", "icon": "megaphone" },
1456
- "finance": { "label": "Finance", "icon": "banknote" },
1457
- "cloud": { "label": "Cloud", "icon": "cloud" },
1458
- "integration": { "label": "Integration", "icon": "link" },
1459
- "automation": { "label": "Automation", "icon": "bot" },
1460
- "project": { "label": "Project Management", "icon": "clipboard" },
1461
- "social": { "label": "Social Media", "icon": "share" }
1462
- }
1463
- }
1702
+ "actions": [
1703
+ "cloudflare_sync",
1704
+ "cloudflare_export",
1705
+ "cloudflare_report"
1706
+ ],
1707
+ "triggers": [
1708
+ "cloudflare_created",
1709
+ "cloudflare_updated",
1710
+ "cloudflare_deleted",
1711
+ "cloudflare_webhook"
1712
+ ]
1713
+ },
1714
+ {
1715
+ "id": "godaddy",
1716
+ "name": "GoDaddy",
1717
+ "category": "ecommerce",
1718
+ "description": "Domain registrar — search, check availability, manage DNS records, domain registration and management",
1719
+ "tools": [
1720
+ "godaddy_suggest_domains",
1721
+ "godaddy_check_availability",
1722
+ "godaddy_list_domains",
1723
+ "godaddy_get_domain",
1724
+ "godaddy_purchase_domain",
1725
+ "godaddy_list_dns_records",
1726
+ "godaddy_add_dns_records",
1727
+ "godaddy_update_dns_record",
1728
+ "godaddy_delete_dns_record"
1729
+ ],
1730
+ "actions": [
1731
+ "godaddy_sync",
1732
+ "godaddy_export"
1733
+ ],
1734
+ "triggers": [
1735
+ "godaddy_created",
1736
+ "godaddy_updated",
1737
+ "godaddy_webhook"
1738
+ ]
1739
+ },
1740
+ {
1741
+ "id": "n8n",
1742
+ "name": "n8n",
1743
+ "category": "automation",
1744
+ "description": "Open-source workflow automation — workflows, executions, credentials, triggers, webhooks (self-hosted or cloud)",
1745
+ "tools": [
1746
+ "n8n_list_workflows",
1747
+ "n8n_get_workflow",
1748
+ "n8n_create_workflow",
1749
+ "n8n_update_workflow",
1750
+ "n8n_delete_workflow",
1751
+ "n8n_activate_workflow",
1752
+ "n8n_deactivate_workflow",
1753
+ "n8n_list_executions",
1754
+ "n8n_get_execution",
1755
+ "n8n_delete_execution",
1756
+ "n8n_list_credentials",
1757
+ "n8n_create_credential",
1758
+ "n8n_delete_credential",
1759
+ "n8n_execute_workflow"
1760
+ ],
1761
+ "actions": [
1762
+ "n8n_sync",
1763
+ "n8n_export",
1764
+ "n8n_report"
1765
+ ],
1766
+ "triggers": [
1767
+ "n8n_created",
1768
+ "n8n_updated",
1769
+ "n8n_deleted",
1770
+ "n8n_webhook"
1771
+ ]
1772
+ },
1773
+ {
1774
+ "id": "pabbly",
1775
+ "name": "Pabbly Connect",
1776
+ "category": "automation",
1777
+ "description": "Workflow automation — connect apps, build automations, manage workflows with webhook triggers",
1778
+ "tools": [
1779
+ "pabbly_list_workflows",
1780
+ "pabbly_get_workflow",
1781
+ "pabbly_create_workflow",
1782
+ "pabbly_enable_workflow",
1783
+ "pabbly_disable_workflow",
1784
+ "pabbly_list_connections",
1785
+ "pabbly_list_executions",
1786
+ "pabbly_get_execution",
1787
+ "pabbly_trigger_webhook"
1788
+ ],
1789
+ "actions": [
1790
+ "pabbly_sync",
1791
+ "pabbly_export"
1792
+ ],
1793
+ "triggers": [
1794
+ "pabbly_created",
1795
+ "pabbly_updated",
1796
+ "pabbly_webhook"
1797
+ ]
1798
+ },
1799
+ {
1800
+ "id": "make",
1801
+ "name": "Make",
1802
+ "category": "automation",
1803
+ "description": "Visual automation platform (formerly Integromat) — scenarios, organizations, connections, data stores",
1804
+ "tools": [
1805
+ "make_list_scenarios",
1806
+ "make_get_scenario",
1807
+ "make_create_scenario",
1808
+ "make_update_scenario",
1809
+ "make_start_scenario",
1810
+ "make_stop_scenario",
1811
+ "make_run_scenario",
1812
+ "make_list_connections",
1813
+ "make_get_connection",
1814
+ "make_verify_connection",
1815
+ "make_list_data_stores",
1816
+ "make_get_data_store_records",
1817
+ "make_list_organizations",
1818
+ "make_get_organization",
1819
+ "make_list_executions"
1820
+ ],
1821
+ "actions": [
1822
+ "make_sync",
1823
+ "make_export",
1824
+ "make_report"
1825
+ ],
1826
+ "triggers": [
1827
+ "make_created",
1828
+ "make_updated",
1829
+ "make_deleted",
1830
+ "make_webhook"
1831
+ ]
1832
+ },
1833
+ {
1834
+ "id": "whimsical",
1835
+ "name": "Whimsical",
1836
+ "category": "productivity",
1837
+ "description": "Visual collaboration — flowcharts, wireframes, mind maps, docs, sticky notes, and AI-powered diagramming",
1838
+ "tools": [
1839
+ "whimsical_list_workspaces",
1840
+ "whimsical_get_workspace",
1841
+ "whimsical_list_boards",
1842
+ "whimsical_get_board",
1843
+ "whimsical_create_board",
1844
+ "whimsical_update_board",
1845
+ "whimsical_delete_board",
1846
+ "whimsical_get_board_export",
1847
+ "whimsical_list_docs",
1848
+ "whimsical_get_doc",
1849
+ "whimsical_create_doc",
1850
+ "whimsical_update_doc",
1851
+ "whimsical_create_from_mermaid",
1852
+ "whimsical_create_from_text",
1853
+ "whimsical_list_scim_users",
1854
+ "whimsical_create_scim_user",
1855
+ "whimsical_update_scim_user",
1856
+ "whimsical_deactivate_scim_user"
1857
+ ],
1858
+ "actions": [
1859
+ "whimsical_sync",
1860
+ "whimsical_export",
1861
+ "whimsical_report"
1862
+ ],
1863
+ "triggers": [
1864
+ "whimsical_created",
1865
+ "whimsical_updated",
1866
+ "whimsical_deleted",
1867
+ "whimsical_webhook"
1868
+ ]
1869
+ },
1870
+ {
1871
+ "id": "ollama",
1872
+ "name": "Ollama",
1873
+ "category": "ai",
1874
+ "description": "Local AI inference — chat completions, embeddings, model management. Free, private, no API costs.",
1875
+ "tools": [
1876
+ "ollama_chat_completion",
1877
+ "ollama_generate",
1878
+ "ollama_create_embedding",
1879
+ "ollama_list_models",
1880
+ "ollama_show_model",
1881
+ "ollama_pull_model",
1882
+ "ollama_delete_model",
1883
+ "ollama_list_running"
1884
+ ],
1885
+ "actions": [
1886
+ "ollama_sync",
1887
+ "ollama_export"
1888
+ ],
1889
+ "triggers": [
1890
+ "ollama_created",
1891
+ "ollama_updated",
1892
+ "ollama_webhook"
1893
+ ]
1894
+ },
1895
+ {
1896
+ "id": "reddit",
1897
+ "name": "Reddit",
1898
+ "category": "social",
1899
+ "description": "Social platform — posts, comments, subreddits, user profiles, search, monitoring via Reddit Data API. IMPORTANT: Reddit requires pre-approved OAuth apps as of Nov 2025. Auto-posting must comply with Reddit's Responsible Builder Policy. Default mode is MANUAL — auto mode requires double confirmation.",
1900
+ "tools": [
1901
+ "reddit_submit_post",
1902
+ "reddit_submit_link",
1903
+ "reddit_get_post",
1904
+ "reddit_delete_thing",
1905
+ "reddit_get_user_posts",
1906
+ "reddit_post_comment",
1907
+ "reddit_get_comments",
1908
+ "reddit_get_subreddit",
1909
+ "reddit_get_subreddit_rules",
1910
+ "reddit_get_hot",
1911
+ "reddit_get_new",
1912
+ "reddit_get_top",
1913
+ "reddit_search_subreddits",
1914
+ "reddit_list_my_subreddits",
1915
+ "reddit_search_posts",
1916
+ "reddit_get_me",
1917
+ "reddit_get_user",
1918
+ "reddit_get_user_comments",
1919
+ "reddit_get_inbox",
1920
+ "reddit_send_message",
1921
+ "reddit_vote"
1922
+ ],
1923
+ "actions": [
1924
+ "reddit_sync",
1925
+ "reddit_export",
1926
+ "reddit_report"
1927
+ ],
1928
+ "triggers": [
1929
+ "reddit_created",
1930
+ "reddit_updated",
1931
+ "reddit_deleted",
1932
+ "reddit_webhook"
1933
+ ]
1934
+ },
1935
+ {
1936
+ "id": "figma",
1937
+ "name": "Figma",
1938
+ "category": "devtools",
1939
+ "description": "Design platform — files, components, styles, variables, images, comments, webhooks, dev resources",
1940
+ "tools": [
1941
+ "figma_get_file",
1942
+ "figma_get_file_nodes",
1943
+ "figma_get_file_meta",
1944
+ "figma_get_file_versions",
1945
+ "figma_export_images",
1946
+ "figma_get_image_fills",
1947
+ "figma_get_team_components",
1948
+ "figma_get_file_components",
1949
+ "figma_get_component",
1950
+ "figma_get_team_component_sets",
1951
+ "figma_get_team_styles",
1952
+ "figma_get_file_styles",
1953
+ "figma_get_style",
1954
+ "figma_get_local_variables",
1955
+ "figma_get_published_variables",
1956
+ "figma_update_variables",
1957
+ "figma_get_comments",
1958
+ "figma_post_comment",
1959
+ "figma_delete_comment",
1960
+ "figma_react_to_comment",
1961
+ "figma_create_webhook",
1962
+ "figma_list_webhooks",
1963
+ "figma_get_webhook",
1964
+ "figma_update_webhook",
1965
+ "figma_delete_webhook",
1966
+ "figma_get_dev_resources",
1967
+ "figma_create_dev_resources",
1968
+ "figma_update_dev_resources",
1969
+ "figma_delete_dev_resource",
1970
+ "figma_list_projects",
1971
+ "figma_list_project_files",
1972
+ "figma_get_me"
1973
+ ],
1974
+ "actions": [
1975
+ "figma_sync",
1976
+ "figma_export",
1977
+ "figma_report"
1978
+ ],
1979
+ "triggers": [
1980
+ "figma_created",
1981
+ "figma_updated",
1982
+ "figma_deleted",
1983
+ "figma_webhook"
1984
+ ]
1985
+ },
1986
+ {
1987
+ "id": "elevenlabs",
1988
+ "name": "ElevenLabs",
1989
+ "category": "ai",
1990
+ "description": "AI voice synthesis — text-to-speech, voice cloning, audio generation",
1991
+ "tools": [
1992
+ "elevenlabs_text_to_speech",
1993
+ "elevenlabs_text_to_speech_stream",
1994
+ "elevenlabs_list_voices",
1995
+ "elevenlabs_get_voice",
1996
+ "elevenlabs_delete_voice",
1997
+ "elevenlabs_get_models",
1998
+ "elevenlabs_get_history",
1999
+ "elevenlabs_get_user"
2000
+ ],
2001
+ "actions": [
2002
+ "elevenlabs_sync",
2003
+ "elevenlabs_export"
2004
+ ],
2005
+ "triggers": [
2006
+ "elevenlabs_created",
2007
+ "elevenlabs_updated",
2008
+ "elevenlabs_webhook"
2009
+ ]
2010
+ },
2011
+ {
2012
+ "id": "deepgram",
2013
+ "name": "Deepgram",
2014
+ "category": "ai",
2015
+ "description": "Speech-to-text and audio intelligence — transcription, summarization, topic detection",
2016
+ "tools": [
2017
+ "deepgram_transcribe_url",
2018
+ "deepgram_list_projects",
2019
+ "deepgram_get_project",
2020
+ "deepgram_list_keys",
2021
+ "deepgram_create_key",
2022
+ "deepgram_get_usage",
2023
+ "deepgram_list_balances"
2024
+ ],
2025
+ "actions": [
2026
+ "deepgram_sync",
2027
+ "deepgram_export"
2028
+ ],
2029
+ "triggers": [
2030
+ "deepgram_created",
2031
+ "deepgram_updated",
2032
+ "deepgram_webhook"
2033
+ ]
2034
+ },
2035
+ {
2036
+ "id": "groq",
2037
+ "name": "Groq",
2038
+ "category": "ai",
2039
+ "description": "Ultra-fast AI inference — chat completions, embeddings, audio transcription",
2040
+ "tools": [
2041
+ "groq_chat_completion",
2042
+ "groq_create_transcription",
2043
+ "groq_list_models"
2044
+ ],
2045
+ "actions": [
2046
+ "groq_sync"
2047
+ ],
2048
+ "triggers": [
2049
+ "groq_created",
2050
+ "groq_updated"
2051
+ ]
2052
+ },
2053
+ {
2054
+ "id": "cohere",
2055
+ "name": "Cohere",
2056
+ "category": "ai",
2057
+ "description": "Enterprise AI — text generation, embeddings, reranking, classification",
2058
+ "tools": [
2059
+ "cohere_chat",
2060
+ "cohere_generate",
2061
+ "cohere_embed",
2062
+ "cohere_rerank",
2063
+ "cohere_classify",
2064
+ "cohere_list_models"
2065
+ ],
2066
+ "actions": [
2067
+ "cohere_sync",
2068
+ "cohere_export"
2069
+ ],
2070
+ "triggers": [
2071
+ "cohere_created",
2072
+ "cohere_updated",
2073
+ "cohere_webhook"
2074
+ ]
2075
+ },
2076
+ {
2077
+ "id": "mistral",
2078
+ "name": "Mistral",
2079
+ "category": "ai",
2080
+ "description": "Open-weight AI models — chat, embeddings, code generation, function calling",
2081
+ "tools": [
2082
+ "mistral_chat_completion",
2083
+ "mistral_create_embedding",
2084
+ "mistral_list_models"
2085
+ ],
2086
+ "actions": [
2087
+ "mistral_sync"
2088
+ ],
2089
+ "triggers": [
2090
+ "mistral_created",
2091
+ "mistral_updated"
2092
+ ]
2093
+ },
2094
+ {
2095
+ "id": "replicate",
2096
+ "name": "Replicate",
2097
+ "category": "ai",
2098
+ "description": "Run open-source AI models — image generation, LLMs, video, audio",
2099
+ "tools": [
2100
+ "replicate_create_prediction",
2101
+ "replicate_get_prediction",
2102
+ "replicate_list_predictions",
2103
+ "replicate_cancel_prediction",
2104
+ "replicate_get_model",
2105
+ "replicate_list_model_versions",
2106
+ "replicate_search_models",
2107
+ "replicate_list_collections"
2108
+ ],
2109
+ "actions": [
2110
+ "replicate_sync",
2111
+ "replicate_export"
2112
+ ],
2113
+ "triggers": [
2114
+ "replicate_created",
2115
+ "replicate_updated",
2116
+ "replicate_webhook"
2117
+ ]
2118
+ },
2119
+ {
2120
+ "id": "stability",
2121
+ "name": "Stability AI",
2122
+ "category": "ai",
2123
+ "description": "Image generation — Stable Diffusion, upscaling, inpainting, image-to-image",
2124
+ "tools": [
2125
+ "stability_text_to_image",
2126
+ "stability_image_to_image",
2127
+ "stability_upscale",
2128
+ "stability_list_engines",
2129
+ "stability_get_account",
2130
+ "stability_get_balance"
2131
+ ],
2132
+ "actions": [
2133
+ "stability_sync",
2134
+ "stability_export"
2135
+ ],
2136
+ "triggers": [
2137
+ "stability_created",
2138
+ "stability_updated",
2139
+ "stability_webhook"
2140
+ ]
2141
+ },
2142
+ {
2143
+ "id": "telegram",
2144
+ "name": "Telegram",
2145
+ "category": "communication",
2146
+ "description": "Messaging platform — bots, channels, groups, payments, inline mode, stickers, forum topics, gifts, verification",
2147
+ "tools": [
2148
+ "telegram_get_updates",
2149
+ "telegram_set_webhook",
2150
+ "telegram_delete_webhook",
2151
+ "telegram_get_webhook_info",
2152
+ "telegram_get_me",
2153
+ "telegram_log_out",
2154
+ "telegram_close",
2155
+ "telegram_get_user_profile_photos",
2156
+ "telegram_get_user_chat_boosts",
2157
+ "telegram_get_business_connection",
2158
+ "telegram_send_message",
2159
+ "telegram_forward_message",
2160
+ "telegram_forward_messages",
2161
+ "telegram_copy_message",
2162
+ "telegram_copy_messages",
2163
+ "telegram_send_photo",
2164
+ "telegram_send_audio",
2165
+ "telegram_send_document",
2166
+ "telegram_send_video",
2167
+ "telegram_send_animation",
2168
+ "telegram_send_voice",
2169
+ "telegram_send_video_note",
2170
+ "telegram_send_paid_media",
2171
+ "telegram_send_media_group",
2172
+ "telegram_send_location",
2173
+ "telegram_send_venue",
2174
+ "telegram_send_contact",
2175
+ "telegram_send_poll",
2176
+ "telegram_send_dice",
2177
+ "telegram_send_chat_action",
2178
+ "telegram_edit_message_text",
2179
+ "telegram_edit_message_caption",
2180
+ "telegram_edit_message_media",
2181
+ "telegram_edit_message_reply_markup",
2182
+ "telegram_edit_message_live_location",
2183
+ "telegram_stop_message_live_location",
2184
+ "telegram_delete_message",
2185
+ "telegram_delete_messages",
2186
+ "telegram_set_message_reaction",
2187
+ "telegram_get_chat",
2188
+ "telegram_get_chat_administrators",
2189
+ "telegram_get_chat_member_count",
2190
+ "telegram_get_chat_member",
2191
+ "telegram_leave_chat",
2192
+ "telegram_set_chat_title",
2193
+ "telegram_set_chat_description",
2194
+ "telegram_set_chat_photo",
2195
+ "telegram_delete_chat_photo",
2196
+ "telegram_set_chat_permissions",
2197
+ "telegram_set_chat_administrator_custom_title",
2198
+ "telegram_set_chat_menu_button",
2199
+ "telegram_get_chat_menu_button",
2200
+ "telegram_set_my_default_admin_rights",
2201
+ "telegram_get_my_default_admin_rights",
2202
+ "telegram_set_chat_background",
2203
+ "telegram_export_chat_invite_link",
2204
+ "telegram_create_chat_invite_link",
2205
+ "telegram_edit_chat_invite_link",
2206
+ "telegram_revoke_chat_invite_link",
2207
+ "telegram_create_chat_subscription_invite_link",
2208
+ "telegram_edit_chat_subscription_invite_link",
2209
+ "telegram_ban_chat_member",
2210
+ "telegram_unban_chat_member",
2211
+ "telegram_restrict_chat_member",
2212
+ "telegram_promote_chat_member",
2213
+ "telegram_approve_chat_join_request",
2214
+ "telegram_decline_chat_join_request",
2215
+ "telegram_ban_chat_sender_chat",
2216
+ "telegram_unban_chat_sender_chat",
2217
+ "telegram_create_forum_topic",
2218
+ "telegram_edit_forum_topic",
2219
+ "telegram_close_forum_topic",
2220
+ "telegram_reopen_forum_topic",
2221
+ "telegram_delete_forum_topic",
2222
+ "telegram_unpin_all_forum_topic_messages",
2223
+ "telegram_get_forum_topic_icon_stickers",
2224
+ "telegram_edit_general_forum_topic",
2225
+ "telegram_close_general_forum_topic",
2226
+ "telegram_reopen_general_forum_topic",
2227
+ "telegram_hide_general_forum_topic",
2228
+ "telegram_unhide_general_forum_topic",
2229
+ "telegram_unpin_all_general_forum_topic_messages",
2230
+ "telegram_set_my_commands",
2231
+ "telegram_get_my_commands",
2232
+ "telegram_delete_my_commands",
2233
+ "telegram_set_my_name",
2234
+ "telegram_get_my_name",
2235
+ "telegram_set_my_description",
2236
+ "telegram_get_my_description",
2237
+ "telegram_set_my_short_description",
2238
+ "telegram_get_my_short_description",
2239
+ "telegram_pin_chat_message",
2240
+ "telegram_unpin_chat_message",
2241
+ "telegram_unpin_all_chat_messages",
2242
+ "telegram_send_sticker",
2243
+ "telegram_get_sticker_set",
2244
+ "telegram_get_custom_emoji_stickers",
2245
+ "telegram_upload_sticker_file",
2246
+ "telegram_create_new_sticker_set",
2247
+ "telegram_add_sticker_to_set",
2248
+ "telegram_set_sticker_position_in_set",
2249
+ "telegram_delete_sticker_from_set",
2250
+ "telegram_replace_sticker_in_set",
2251
+ "telegram_set_sticker_set_thumbnail",
2252
+ "telegram_set_custom_emoji_sticker_set_thumbnail",
2253
+ "telegram_set_sticker_set_title",
2254
+ "telegram_delete_sticker_set",
2255
+ "telegram_set_sticker_emoji_list",
2256
+ "telegram_set_sticker_keywords",
2257
+ "telegram_set_sticker_mask_position",
2258
+ "telegram_answer_inline_query",
2259
+ "telegram_answer_web_app_query",
2260
+ "telegram_save_prepared_inline_message",
2261
+ "telegram_send_invoice",
2262
+ "telegram_create_invoice_link",
2263
+ "telegram_answer_shipping_query",
2264
+ "telegram_answer_pre_checkout_query",
2265
+ "telegram_get_star_transactions",
2266
+ "telegram_refund_star_payment",
2267
+ "telegram_edit_user_star_subscription",
2268
+ "telegram_send_game",
2269
+ "telegram_set_game_score",
2270
+ "telegram_get_game_high_scores",
2271
+ "telegram_answer_callback_query",
2272
+ "telegram_get_file",
2273
+ "telegram_send_gift",
2274
+ "telegram_get_available_gifts",
2275
+ "telegram_gift_premium_subscription",
2276
+ "telegram_verify_user",
2277
+ "telegram_verify_chat",
2278
+ "telegram_remove_user_verification",
2279
+ "telegram_remove_chat_verification"
2280
+ ],
2281
+ "actions": [
2282
+ "telegram_sync",
2283
+ "telegram_export",
2284
+ "telegram_report"
2285
+ ],
2286
+ "triggers": [
2287
+ "telegram_created",
2288
+ "telegram_updated",
2289
+ "telegram_deleted",
2290
+ "telegram_webhook"
2291
+ ]
2292
+ },
2293
+ {
2294
+ "id": "postmark",
2295
+ "name": "Postmark",
2296
+ "category": "email",
2297
+ "description": "Transactional email — send, templates, webhooks, bounce management",
2298
+ "tools": [
2299
+ "postmark_send_email",
2300
+ "postmark_send_batch",
2301
+ "postmark_send_template",
2302
+ "postmark_list_templates",
2303
+ "postmark_get_template",
2304
+ "postmark_create_template",
2305
+ "postmark_list_bounces",
2306
+ "postmark_get_delivery_stats",
2307
+ "postmark_get_server"
2308
+ ],
2309
+ "actions": [
2310
+ "postmark_sync",
2311
+ "postmark_export"
2312
+ ],
2313
+ "triggers": [
2314
+ "postmark_created",
2315
+ "postmark_updated",
2316
+ "postmark_webhook"
2317
+ ]
2318
+ },
2319
+ {
2320
+ "id": "mailgun",
2321
+ "name": "Mailgun",
2322
+ "category": "email",
2323
+ "description": "Email API — send, receive, validate, track deliverability",
2324
+ "tools": [
2325
+ "mailgun_send_message",
2326
+ "mailgun_list_domains",
2327
+ "mailgun_get_domain",
2328
+ "mailgun_list_events",
2329
+ "mailgun_get_stats",
2330
+ "mailgun_validate_email",
2331
+ "mailgun_list_bounces",
2332
+ "mailgun_list_unsubscribes"
2333
+ ],
2334
+ "actions": [
2335
+ "mailgun_sync",
2336
+ "mailgun_export"
2337
+ ],
2338
+ "triggers": [
2339
+ "mailgun_created",
2340
+ "mailgun_updated",
2341
+ "mailgun_webhook"
2342
+ ]
2343
+ },
2344
+ {
2345
+ "id": "convertkit",
2346
+ "name": "ConvertKit",
2347
+ "category": "email",
2348
+ "description": "Creator email marketing — subscribers, sequences, broadcasts, forms, tags",
2349
+ "tools": [
2350
+ "convertkit_list_subscribers",
2351
+ "convertkit_get_subscriber",
2352
+ "convertkit_create_subscriber",
2353
+ "convertkit_tag_subscriber",
2354
+ "convertkit_list_tags",
2355
+ "convertkit_create_tag",
2356
+ "convertkit_list_sequences",
2357
+ "convertkit_add_to_sequence",
2358
+ "convertkit_list_forms",
2359
+ "convertkit_list_broadcasts",
2360
+ "convertkit_create_broadcast"
2361
+ ],
2362
+ "actions": [
2363
+ "convertkit_sync",
2364
+ "convertkit_export",
2365
+ "convertkit_report"
2366
+ ],
2367
+ "triggers": [
2368
+ "convertkit_created",
2369
+ "convertkit_updated",
2370
+ "convertkit_deleted",
2371
+ "convertkit_webhook"
2372
+ ]
2373
+ },
2374
+ {
2375
+ "id": "brevo",
2376
+ "name": "Brevo",
2377
+ "category": "email",
2378
+ "description": "Email & SMS marketing — campaigns, transactional, contacts, automation",
2379
+ "tools": [
2380
+ "brevo_send_transactional",
2381
+ "brevo_list_contacts",
2382
+ "brevo_create_contact",
2383
+ "brevo_update_contact",
2384
+ "brevo_get_contact",
2385
+ "brevo_list_lists",
2386
+ "brevo_send_sms",
2387
+ "brevo_get_account"
2388
+ ],
2389
+ "actions": [
2390
+ "brevo_sync",
2391
+ "brevo_export"
2392
+ ],
2393
+ "triggers": [
2394
+ "brevo_created",
2395
+ "brevo_updated",
2396
+ "brevo_webhook"
2397
+ ]
2398
+ },
2399
+ {
2400
+ "id": "activecampaign",
2401
+ "name": "ActiveCampaign",
2402
+ "category": "marketing",
2403
+ "description": "Email marketing + CRM — contacts, automations, deals, campaigns, tags",
2404
+ "tools": [
2405
+ "activecampaign_create_contact",
2406
+ "activecampaign_list_contacts",
2407
+ "activecampaign_get_contact",
2408
+ "activecampaign_update_contact",
2409
+ "activecampaign_add_tag",
2410
+ "activecampaign_list_tags",
2411
+ "activecampaign_list_automations",
2412
+ "activecampaign_create_deal",
2413
+ "activecampaign_list_deals",
2414
+ "activecampaign_list_lists"
2415
+ ],
2416
+ "actions": [
2417
+ "activecampaign_sync",
2418
+ "activecampaign_export",
2419
+ "activecampaign_report"
2420
+ ],
2421
+ "triggers": [
2422
+ "activecampaign_created",
2423
+ "activecampaign_updated",
2424
+ "activecampaign_deleted",
2425
+ "activecampaign_webhook"
2426
+ ]
2427
+ },
2428
+ {
2429
+ "id": "lemlist",
2430
+ "name": "Lemlist",
2431
+ "category": "marketing",
2432
+ "description": "Cold email outreach — campaigns, leads, sequences, email warmup",
2433
+ "tools": [
2434
+ "lemlist_list_campaigns",
2435
+ "lemlist_get_campaign",
2436
+ "lemlist_add_lead",
2437
+ "lemlist_list_leads",
2438
+ "lemlist_delete_lead",
2439
+ "lemlist_list_activities",
2440
+ "lemlist_get_team"
2441
+ ],
2442
+ "actions": [
2443
+ "lemlist_sync",
2444
+ "lemlist_export"
2445
+ ],
2446
+ "triggers": [
2447
+ "lemlist_created",
2448
+ "lemlist_updated",
2449
+ "lemlist_webhook"
2450
+ ]
2451
+ },
2452
+ {
2453
+ "id": "aws",
2454
+ "name": "AWS",
2455
+ "category": "cloud",
2456
+ "description": "Amazon Web Services — S3 storage, Lambda functions, SES email, SNS notifications",
2457
+ "tools": [
2458
+ "aws_list_buckets",
2459
+ "aws_list_objects",
2460
+ "aws_put_object",
2461
+ "aws_get_object",
2462
+ "aws_delete_object"
2463
+ ],
2464
+ "actions": [
2465
+ "aws_sync",
2466
+ "aws_export"
2467
+ ],
2468
+ "triggers": [
2469
+ "aws_created",
2470
+ "aws_updated",
2471
+ "aws_webhook"
2472
+ ]
2473
+ },
2474
+ {
2475
+ "id": "webflow",
2476
+ "name": "Webflow",
2477
+ "category": "devtools",
2478
+ "description": "Visual web builder — sites, CMS collections, forms, e-commerce, memberships",
2479
+ "tools": [
2480
+ "webflow_list_sites",
2481
+ "webflow_get_site",
2482
+ "webflow_publish_site",
2483
+ "webflow_list_collections",
2484
+ "webflow_get_collection",
2485
+ "webflow_list_items",
2486
+ "webflow_create_item",
2487
+ "webflow_update_item",
2488
+ "webflow_delete_item",
2489
+ "webflow_list_forms",
2490
+ "webflow_list_form_submissions",
2491
+ "webflow_list_products"
2492
+ ],
2493
+ "actions": [
2494
+ "webflow_sync",
2495
+ "webflow_export",
2496
+ "webflow_report"
2497
+ ],
2498
+ "triggers": [
2499
+ "webflow_created",
2500
+ "webflow_updated",
2501
+ "webflow_deleted",
2502
+ "webflow_webhook"
2503
+ ]
2504
+ },
2505
+ {
2506
+ "id": "wordpress",
2507
+ "name": "WordPress",
2508
+ "category": "devtools",
2509
+ "description": "WordPress REST API — posts, pages, media, users, comments, plugins",
2510
+ "tools": [
2511
+ "wordpress_list_posts",
2512
+ "wordpress_create_post",
2513
+ "wordpress_update_post",
2514
+ "wordpress_delete_post",
2515
+ "wordpress_list_pages",
2516
+ "wordpress_create_page",
2517
+ "wordpress_update_page",
2518
+ "wordpress_list_media",
2519
+ "wordpress_upload_media",
2520
+ "wordpress_list_users",
2521
+ "wordpress_list_comments",
2522
+ "wordpress_list_categories",
2523
+ "wordpress_list_tags"
2524
+ ],
2525
+ "actions": [
2526
+ "wordpress_sync",
2527
+ "wordpress_export",
2528
+ "wordpress_report"
2529
+ ],
2530
+ "triggers": [
2531
+ "wordpress_created",
2532
+ "wordpress_updated",
2533
+ "wordpress_deleted",
2534
+ "wordpress_webhook"
2535
+ ]
2536
+ },
2537
+ {
2538
+ "id": "monday",
2539
+ "name": "Monday.com",
2540
+ "category": "project",
2541
+ "description": "Work management — boards, items, columns, updates, automations via GraphQL",
2542
+ "tools": [
2543
+ "monday_graphql"
2544
+ ],
2545
+ "actions": [
2546
+ "monday_sync"
2547
+ ],
2548
+ "triggers": [
2549
+ "monday_created",
2550
+ "monday_updated"
2551
+ ]
2552
+ },
2553
+ {
2554
+ "id": "trello",
2555
+ "name": "Trello",
2556
+ "category": "project",
2557
+ "description": "Kanban boards — cards, lists, boards, checklists, labels, members",
2558
+ "tools": [
2559
+ "trello_list_boards",
2560
+ "trello_get_board",
2561
+ "trello_create_board",
2562
+ "trello_get_lists",
2563
+ "trello_create_list",
2564
+ "trello_create_card",
2565
+ "trello_update_card",
2566
+ "trello_delete_card",
2567
+ "trello_get_card",
2568
+ "trello_list_labels"
2569
+ ],
2570
+ "actions": [
2571
+ "trello_sync",
2572
+ "trello_export",
2573
+ "trello_report"
2574
+ ],
2575
+ "triggers": [
2576
+ "trello_created",
2577
+ "trello_updated",
2578
+ "trello_deleted",
2579
+ "trello_webhook"
2580
+ ]
2581
+ },
2582
+ {
2583
+ "id": "typeform",
2584
+ "name": "Typeform",
2585
+ "category": "productivity",
2586
+ "description": "Interactive forms — create forms, collect responses, webhooks",
2587
+ "tools": [
2588
+ "typeform_list_forms",
2589
+ "typeform_get_form",
2590
+ "typeform_create_form",
2591
+ "typeform_list_responses",
2592
+ "typeform_create_webhook",
2593
+ "typeform_list_webhooks",
2594
+ "typeform_list_workspaces"
2595
+ ],
2596
+ "actions": [
2597
+ "typeform_sync",
2598
+ "typeform_export"
2599
+ ],
2600
+ "triggers": [
2601
+ "typeform_created",
2602
+ "typeform_updated",
2603
+ "typeform_webhook"
2604
+ ]
2605
+ },
2606
+ {
2607
+ "id": "docusign",
2608
+ "name": "DocuSign",
2609
+ "category": "productivity",
2610
+ "description": "E-signatures — envelopes, templates, recipients, signing workflows",
2611
+ "tools": [
2612
+ "docusign_create_envelope",
2613
+ "docusign_get_envelope",
2614
+ "docusign_list_envelopes",
2615
+ "docusign_list_recipients",
2616
+ "docusign_list_templates",
2617
+ "docusign_get_template"
2618
+ ],
2619
+ "actions": [
2620
+ "docusign_sync",
2621
+ "docusign_export"
2622
+ ],
2623
+ "triggers": [
2624
+ "docusign_created",
2625
+ "docusign_updated",
2626
+ "docusign_webhook"
2627
+ ]
2628
+ },
2629
+ {
2630
+ "id": "xero",
2631
+ "name": "Xero",
2632
+ "category": "finance",
2633
+ "description": "Cloud accounting — invoices, contacts, payments, bank reconciliation, reports",
2634
+ "tools": [
2635
+ "xero_list_invoices",
2636
+ "xero_create_invoice",
2637
+ "xero_get_invoice",
2638
+ "xero_list_contacts",
2639
+ "xero_create_contact",
2640
+ "xero_list_payments",
2641
+ "xero_create_payment",
2642
+ "xero_list_accounts",
2643
+ "xero_get_organisation"
2644
+ ],
2645
+ "actions": [
2646
+ "xero_sync",
2647
+ "xero_export"
2648
+ ],
2649
+ "triggers": [
2650
+ "xero_created",
2651
+ "xero_updated",
2652
+ "xero_webhook"
2653
+ ]
2654
+ },
2655
+ {
2656
+ "id": "freshdesk",
2657
+ "name": "Freshdesk",
2658
+ "category": "support",
2659
+ "description": "Help desk — tickets, contacts, agents, groups, automations",
2660
+ "tools": [
2661
+ "freshdesk_list_tickets",
2662
+ "freshdesk_create_ticket",
2663
+ "freshdesk_update_ticket",
2664
+ "freshdesk_get_ticket",
2665
+ "freshdesk_list_contacts",
2666
+ "freshdesk_create_contact",
2667
+ "freshdesk_get_contact",
2668
+ "freshdesk_list_agents"
2669
+ ],
2670
+ "actions": [
2671
+ "freshdesk_sync",
2672
+ "freshdesk_export"
2673
+ ],
2674
+ "triggers": [
2675
+ "freshdesk_created",
2676
+ "freshdesk_updated",
2677
+ "freshdesk_webhook"
2678
+ ]
2679
+ },
2680
+ {
2681
+ "id": "youtube",
2682
+ "name": "YouTube",
2683
+ "category": "social",
2684
+ "description": "Video platform — channels, videos, playlists, comments, analytics",
2685
+ "tools": [
2686
+ "youtube_search",
2687
+ "youtube_list_videos",
2688
+ "youtube_list_channels",
2689
+ "youtube_list_playlists",
2690
+ "youtube_list_playlist_items",
2691
+ "youtube_list_comments"
2692
+ ],
2693
+ "actions": [
2694
+ "youtube_sync",
2695
+ "youtube_export"
2696
+ ],
2697
+ "triggers": [
2698
+ "youtube_created",
2699
+ "youtube_updated",
2700
+ "youtube_webhook"
2701
+ ]
2702
+ },
2703
+ {
2704
+ "id": "netlify",
2705
+ "name": "Netlify",
2706
+ "category": "devtools",
2707
+ "description": "Web deployment — sites, deploys, forms, functions, DNS",
2708
+ "tools": [
2709
+ "netlify_list_sites",
2710
+ "netlify_get_site",
2711
+ "netlify_create_site",
2712
+ "netlify_list_deploys",
2713
+ "netlify_get_deploy",
2714
+ "netlify_list_forms",
2715
+ "netlify_list_form_submissions",
2716
+ "netlify_list_dns_zones",
2717
+ "netlify_get_account"
2718
+ ],
2719
+ "actions": [
2720
+ "netlify_sync",
2721
+ "netlify_export"
2722
+ ],
2723
+ "triggers": [
2724
+ "netlify_created",
2725
+ "netlify_updated",
2726
+ "netlify_webhook"
2727
+ ]
2728
+ },
2729
+ {
2730
+ "id": "pinterest",
2731
+ "name": "Pinterest",
2732
+ "category": "social",
2733
+ "description": "Visual discovery — pins, boards, ads, analytics",
2734
+ "tools": [
2735
+ "pinterest_create_pin",
2736
+ "pinterest_list_pins",
2737
+ "pinterest_get_pin",
2738
+ "pinterest_list_boards",
2739
+ "pinterest_create_board",
2740
+ "pinterest_get_user_account",
2741
+ "pinterest_get_analytics"
2742
+ ],
2743
+ "actions": [
2744
+ "pinterest_sync",
2745
+ "pinterest_export"
2746
+ ],
2747
+ "triggers": [
2748
+ "pinterest_created",
2749
+ "pinterest_updated",
2750
+ "pinterest_webhook"
2751
+ ]
2752
+ },
2753
+ {
2754
+ "id": "bigcommerce",
2755
+ "name": "BigCommerce",
2756
+ "category": "ecommerce",
2757
+ "description": "E-commerce platform — products, orders, customers, categories",
2758
+ "tools": [
2759
+ "bigcommerce_list_products",
2760
+ "bigcommerce_create_product",
2761
+ "bigcommerce_get_product",
2762
+ "bigcommerce_list_orders",
2763
+ "bigcommerce_get_order",
2764
+ "bigcommerce_list_customers",
2765
+ "bigcommerce_create_customer",
2766
+ "bigcommerce_list_categories"
2767
+ ],
2768
+ "actions": [
2769
+ "bigcommerce_sync",
2770
+ "bigcommerce_export"
2771
+ ],
2772
+ "triggers": [
2773
+ "bigcommerce_created",
2774
+ "bigcommerce_updated",
2775
+ "bigcommerce_webhook"
2776
+ ]
2777
+ },
2778
+ {
2779
+ "id": "twitch",
2780
+ "name": "Twitch",
2781
+ "category": "social",
2782
+ "description": "Live streaming — streams, users, channels, clips, chat",
2783
+ "tools": [
2784
+ "twitch_get_streams",
2785
+ "twitch_get_users",
2786
+ "twitch_search_channels",
2787
+ "twitch_get_clips",
2788
+ "twitch_create_clip",
2789
+ "twitch_get_channel_info",
2790
+ "twitch_get_top_games"
2791
+ ],
2792
+ "actions": [
2793
+ "twitch_sync",
2794
+ "twitch_export"
2795
+ ],
2796
+ "triggers": [
2797
+ "twitch_created",
2798
+ "twitch_updated",
2799
+ "twitch_webhook"
2800
+ ]
2801
+ },
2802
+ {
2803
+ "id": "wave",
2804
+ "name": "Wave",
2805
+ "category": "finance",
2806
+ "description": "Free accounting — invoicing, payments, expenses via GraphQL",
2807
+ "tools": [
2808
+ "wave_graphql"
2809
+ ],
2810
+ "actions": [
2811
+ "wave_sync"
2812
+ ],
2813
+ "triggers": [
2814
+ "wave_created",
2815
+ "wave_updated"
2816
+ ]
2817
+ },
2818
+ {
2819
+ "id": "loom",
2820
+ "name": "Loom",
2821
+ "category": "devtools",
2822
+ "description": "Video messaging — recordings, transcripts, workspace",
2823
+ "tools": [
2824
+ "loom_list_videos",
2825
+ "loom_get_video",
2826
+ "loom_delete_video",
2827
+ "loom_get_video_transcript"
2828
+ ],
2829
+ "actions": [
2830
+ "loom_sync"
2831
+ ],
2832
+ "triggers": [
2833
+ "loom_created",
2834
+ "loom_updated"
2835
+ ]
2836
+ },
2837
+ {
2838
+ "id": "gcloud",
2839
+ "name": "Google Cloud",
2840
+ "category": "cloud",
2841
+ "description": "GCP — Cloud Storage, Compute Engine, BigQuery",
2842
+ "tools": [
2843
+ "gcloud_list_buckets",
2844
+ "gcloud_get_bucket",
2845
+ "gcloud_list_objects",
2846
+ "gcloud_get_object",
2847
+ "gcloud_delete_object"
2848
+ ],
2849
+ "actions": [
2850
+ "gcloud_sync",
2851
+ "gcloud_export"
2852
+ ],
2853
+ "triggers": [
2854
+ "gcloud_created",
2855
+ "gcloud_updated",
2856
+ "gcloud_webhook"
2857
+ ]
2858
+ },
2859
+ {
2860
+ "id": "neon",
2861
+ "name": "Neon",
2862
+ "category": "database",
2863
+ "description": "Serverless Postgres — projects, branches, databases, endpoints",
2864
+ "tools": [
2865
+ "neon_list_projects",
2866
+ "neon_create_project",
2867
+ "neon_get_project",
2868
+ "neon_delete_project",
2869
+ "neon_list_branches",
2870
+ "neon_create_branch",
2871
+ "neon_list_databases",
2872
+ "neon_list_endpoints"
2873
+ ],
2874
+ "actions": [
2875
+ "neon_sync",
2876
+ "neon_export"
2877
+ ],
2878
+ "triggers": [
2879
+ "neon_created",
2880
+ "neon_updated",
2881
+ "neon_webhook"
2882
+ ]
2883
+ },
2884
+ {
2885
+ "id": "planetscale",
2886
+ "name": "PlanetScale",
2887
+ "category": "database",
2888
+ "description": "Serverless MySQL — databases, branches, deploy requests",
2889
+ "tools": [
2890
+ "planetscale_list_databases",
2891
+ "planetscale_create_database",
2892
+ "planetscale_get_database",
2893
+ "planetscale_delete_database",
2894
+ "planetscale_list_branches",
2895
+ "planetscale_create_branch",
2896
+ "planetscale_list_deploy_requests"
2897
+ ],
2898
+ "actions": [
2899
+ "planetscale_sync",
2900
+ "planetscale_export"
2901
+ ],
2902
+ "triggers": [
2903
+ "planetscale_created",
2904
+ "planetscale_updated",
2905
+ "planetscale_webhook"
2906
+ ]
2907
+ },
2908
+ {
2909
+ "id": "turso",
2910
+ "name": "Turso",
2911
+ "category": "database",
2912
+ "description": "Edge SQLite — databases, groups, locations, tokens",
2913
+ "tools": [
2914
+ "turso_list_databases",
2915
+ "turso_create_database",
2916
+ "turso_get_database",
2917
+ "turso_delete_database",
2918
+ "turso_list_groups",
2919
+ "turso_create_group",
2920
+ "turso_list_locations",
2921
+ "turso_create_token"
2922
+ ],
2923
+ "actions": [
2924
+ "turso_sync",
2925
+ "turso_export"
2926
+ ],
2927
+ "triggers": [
2928
+ "turso_created",
2929
+ "turso_updated",
2930
+ "turso_webhook"
2931
+ ]
2932
+ },
2933
+ {
2934
+ "id": "cockroachdb",
2935
+ "name": "CockroachDB",
2936
+ "category": "database",
2937
+ "description": "Distributed SQL — clusters, databases, SQL users, backups",
2938
+ "tools": [
2939
+ "cockroachdb_list_clusters",
2940
+ "cockroachdb_create_cluster",
2941
+ "cockroachdb_get_cluster",
2942
+ "cockroachdb_delete_cluster",
2943
+ "cockroachdb_list_sql_users",
2944
+ "cockroachdb_create_sql_user",
2945
+ "cockroachdb_list_databases"
2946
+ ],
2947
+ "actions": [
2948
+ "cockroachdb_sync",
2949
+ "cockroachdb_export"
2950
+ ],
2951
+ "triggers": [
2952
+ "cockroachdb_created",
2953
+ "cockroachdb_updated",
2954
+ "cockroachdb_webhook"
2955
+ ]
2956
+ },
2957
+ {
2958
+ "id": "railway",
2959
+ "name": "Railway",
2960
+ "category": "cloud",
2961
+ "description": "Deploy anything — projects, services, environments via GraphQL",
2962
+ "tools": [
2963
+ "railway_graphql"
2964
+ ],
2965
+ "actions": [
2966
+ "railway_sync"
2967
+ ],
2968
+ "triggers": [
2969
+ "railway_created",
2970
+ "railway_updated"
2971
+ ]
2972
+ },
2973
+ {
2974
+ "id": "render",
2975
+ "name": "Render",
2976
+ "category": "cloud",
2977
+ "description": "Cloud platform — web services, static sites, databases, cron jobs",
2978
+ "tools": [
2979
+ "render_list_services",
2980
+ "render_get_service",
2981
+ "render_create_service",
2982
+ "render_list_deploys",
2983
+ "render_create_deploy",
2984
+ "render_get_deploy",
2985
+ "render_list_env_groups"
2986
+ ],
2987
+ "actions": [
2988
+ "render_sync",
2989
+ "render_export"
2990
+ ],
2991
+ "triggers": [
2992
+ "render_created",
2993
+ "render_updated",
2994
+ "render_webhook"
2995
+ ]
2996
+ },
2997
+ {
2998
+ "id": "cloudconvert",
2999
+ "name": "CloudConvert",
3000
+ "category": "integration",
3001
+ "description": "File conversion API — convert between 200+ formats (PDF, DOCX, PNG, MP4, etc.), optimize, merge, capture websites, create thumbnails",
3002
+ "tools": [
3003
+ "cloudconvert_create_job",
3004
+ "cloudconvert_list_jobs",
3005
+ "cloudconvert_get_job",
3006
+ "cloudconvert_delete_job",
3007
+ "cloudconvert_wait_job",
3008
+ "cloudconvert_create_task",
3009
+ "cloudconvert_list_tasks",
3010
+ "cloudconvert_get_task",
3011
+ "cloudconvert_delete_task",
3012
+ "cloudconvert_wait_task",
3013
+ "cloudconvert_cancel_task",
3014
+ "cloudconvert_retry_task",
3015
+ "cloudconvert_convert",
3016
+ "cloudconvert_optimize",
3017
+ "cloudconvert_capture_website",
3018
+ "cloudconvert_create_thumbnail",
3019
+ "cloudconvert_merge",
3020
+ "cloudconvert_create_archive",
3021
+ "cloudconvert_watermark",
3022
+ "cloudconvert_metadata",
3023
+ "cloudconvert_import_url",
3024
+ "cloudconvert_import_upload",
3025
+ "cloudconvert_import_s3",
3026
+ "cloudconvert_import_google_cloud",
3027
+ "cloudconvert_export_url",
3028
+ "cloudconvert_export_s3",
3029
+ "cloudconvert_export_google_cloud",
3030
+ "cloudconvert_get_user",
3031
+ "cloudconvert_get_balance",
3032
+ "cloudconvert_create_webhook",
3033
+ "cloudconvert_list_webhooks",
3034
+ "cloudconvert_delete_webhook"
3035
+ ],
3036
+ "actions": [
3037
+ "cloudconvert_sync",
3038
+ "cloudconvert_export",
3039
+ "cloudconvert_report"
3040
+ ],
3041
+ "triggers": [
3042
+ "cloudconvert_created",
3043
+ "cloudconvert_updated",
3044
+ "cloudconvert_deleted",
3045
+ "cloudconvert_webhook"
3046
+ ]
3047
+ }
3048
+ ]
3049
+ }