0nmcp 1.2.2 → 1.3.1

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.
@@ -0,0 +1,813 @@
1
+ {
2
+ "$schema": "./catalog.schema.json",
3
+ "_meta": {
4
+ "name": "0nMCP Service Catalog",
5
+ "description": "Single source of truth for all services, tools, actions, and triggers in the 0nMCP ecosystem",
6
+ "version": "1.2.2",
7
+ "lastUpdated": "2026-02-11T00:00:00Z",
8
+ "maintainer": "0nORK <hello@0nork.com>"
9
+ },
10
+ "services": [
11
+ {
12
+ "id": "crm",
13
+ "name": "CRM",
14
+ "category": "crm",
15
+ "description": "CRM, contacts, opportunities, pipelines, workflows",
16
+ "tools": [
17
+ "crm_get_contacts",
18
+ "crm_create_contact",
19
+ "crm_update_contact",
20
+ "crm_delete_contact",
21
+ "crm_search_contacts",
22
+ "crm_get_opportunities",
23
+ "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"
41
+ ],
42
+ "actions": [
43
+ "crm_sync",
44
+ "contact_enrich",
45
+ "pipeline_report"
46
+ ],
47
+ "triggers": [
48
+ "contact_created",
49
+ "contact_updated",
50
+ "opportunity_status_changed",
51
+ "appointment_booked",
52
+ "form_submitted"
53
+ ],
54
+ "rateLimit": { "requests": 100, "window": 60 }
55
+ },
56
+ {
57
+ "id": "stripe",
58
+ "name": "Stripe",
59
+ "category": "payments",
60
+ "description": "Payments, subscriptions, invoices, customers",
61
+ "tools": [
62
+ "stripe_create_customer",
63
+ "stripe_get_customer",
64
+ "stripe_create_payment_intent",
65
+ "stripe_list_payments",
66
+ "stripe_create_invoice",
67
+ "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
+ "stripe_list_invoices",
76
+ "stripe_create_product",
77
+ "stripe_create_price"
78
+ ],
79
+ "actions": [
80
+ "payment_report",
81
+ "subscription_sync",
82
+ "invoice_batch"
83
+ ],
84
+ "triggers": [
85
+ "payment_succeeded",
86
+ "payment_failed",
87
+ "subscription_created",
88
+ "subscription_cancelled",
89
+ "invoice_paid"
90
+ ],
91
+ "rateLimit": { "requests": 100, "window": 1 }
92
+ },
93
+ {
94
+ "id": "slack",
95
+ "name": "Slack",
96
+ "category": "communication",
97
+ "description": "Messaging, channels, files, users",
98
+ "tools": [
99
+ "slack_send_message",
100
+ "slack_list_channels",
101
+ "slack_create_channel",
102
+ "slack_upload_file",
103
+ "slack_get_users",
104
+ "slack_set_topic",
105
+ "slack_add_reaction",
106
+ "slack_search_messages",
107
+ "slack_get_channel_history",
108
+ "slack_post_thread_reply"
109
+ ],
110
+ "actions": [
111
+ "channel_notify",
112
+ "daily_digest"
113
+ ],
114
+ "triggers": [
115
+ "message_received",
116
+ "channel_created",
117
+ "reaction_added"
118
+ ],
119
+ "rateLimit": { "requests": 50, "window": 60 }
120
+ },
121
+ {
122
+ "id": "discord",
123
+ "name": "Discord",
124
+ "category": "communication",
125
+ "description": "Servers, channels, messages, webhooks",
126
+ "tools": [
127
+ "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"
137
+ ],
138
+ "actions": [
139
+ "discord_announce",
140
+ "role_sync"
141
+ ],
142
+ "triggers": [
143
+ "member_joined",
144
+ "message_sent"
145
+ ],
146
+ "rateLimit": { "requests": 50, "window": 60 }
147
+ },
148
+ {
149
+ "id": "openai",
150
+ "name": "OpenAI",
151
+ "category": "ai",
152
+ "description": "GPT completions, embeddings, images, speech",
153
+ "tools": [
154
+ "openai_chat_completion",
155
+ "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"
164
+ ],
165
+ "actions": [
166
+ "ai_summarize",
167
+ "ai_classify",
168
+ "ai_extract"
169
+ ],
170
+ "triggers": [
171
+ "batch_completed",
172
+ "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 }
279
+ },
280
+ {
281
+ "id": "airtable",
282
+ "name": "Airtable",
283
+ "category": "database",
284
+ "description": "Bases, tables, records, views",
285
+ "tools": [
286
+ "airtable_list_records",
287
+ "airtable_create_record",
288
+ "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"
295
+ ],
296
+ "actions": [
297
+ "airtable_sync",
298
+ "record_batch"
299
+ ],
300
+ "triggers": [
301
+ "record_created",
302
+ "record_updated"
303
+ ],
304
+ "rateLimit": { "requests": 5, "window": 1 }
305
+ },
306
+ {
307
+ "id": "notion",
308
+ "name": "Notion",
309
+ "category": "productivity",
310
+ "description": "Pages, databases, blocks, search",
311
+ "tools": [
312
+ "notion_create_page",
313
+ "notion_update_page",
314
+ "notion_get_page",
315
+ "notion_query_database",
316
+ "notion_create_database",
317
+ "notion_add_block",
318
+ "notion_search",
319
+ "notion_get_users",
320
+ "notion_archive_page"
321
+ ],
322
+ "actions": [
323
+ "notion_sync",
324
+ "page_template"
325
+ ],
326
+ "triggers": [
327
+ "page_created",
328
+ "page_updated",
329
+ "database_item_created"
330
+ ],
331
+ "rateLimit": { "requests": 3, "window": 1 }
332
+ },
333
+ {
334
+ "id": "github",
335
+ "name": "GitHub",
336
+ "category": "devtools",
337
+ "description": "Repos, issues, PRs, actions, releases",
338
+ "tools": [
339
+ "github_create_issue",
340
+ "github_close_issue",
341
+ "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"
353
+ ],
354
+ "actions": [
355
+ "release_notify",
356
+ "issue_triage"
357
+ ],
358
+ "triggers": [
359
+ "push_received",
360
+ "pr_opened",
361
+ "pr_merged",
362
+ "issue_opened",
363
+ "release_published",
364
+ "workflow_completed"
365
+ ],
366
+ "rateLimit": { "requests": 30, "window": 60 }
367
+ },
368
+ {
369
+ "id": "linear",
370
+ "name": "Linear",
371
+ "category": "devtools",
372
+ "description": "Issues, projects, cycles, teams",
373
+ "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"
382
+ ],
383
+ "actions": [
384
+ "sprint_report",
385
+ "issue_sync"
386
+ ],
387
+ "triggers": [
388
+ "issue_created",
389
+ "issue_status_changed",
390
+ "cycle_completed"
391
+ ],
392
+ "rateLimit": { "requests": 60, "window": 60 }
393
+ },
394
+ {
395
+ "id": "shopify",
396
+ "name": "Shopify",
397
+ "category": "ecommerce",
398
+ "description": "Products, orders, customers, inventory",
399
+ "tools": [
400
+ "shopify_list_products",
401
+ "shopify_create_product",
402
+ "shopify_update_product",
403
+ "shopify_list_orders",
404
+ "shopify_get_order",
405
+ "shopify_create_order",
406
+ "shopify_list_customers",
407
+ "shopify_get_inventory",
408
+ "shopify_update_inventory",
409
+ "shopify_create_discount",
410
+ "shopify_get_analytics",
411
+ "shopify_fulfill_order"
412
+ ],
413
+ "actions": [
414
+ "inventory_alert",
415
+ "order_report",
416
+ "product_sync"
417
+ ],
418
+ "triggers": [
419
+ "order_placed",
420
+ "order_fulfilled",
421
+ "product_updated",
422
+ "customer_created",
423
+ "inventory_low"
424
+ ],
425
+ "rateLimit": { "requests": 40, "window": 60 }
426
+ },
427
+ {
428
+ "id": "hubspot",
429
+ "name": "HubSpot",
430
+ "category": "crm",
431
+ "description": "CRM contacts, deals, companies, marketing",
432
+ "tools": [
433
+ "hubspot_create_contact",
434
+ "hubspot_get_contact",
435
+ "hubspot_update_contact",
436
+ "hubspot_search_contacts",
437
+ "hubspot_create_deal",
438
+ "hubspot_update_deal",
439
+ "hubspot_list_deals",
440
+ "hubspot_create_company",
441
+ "hubspot_get_company",
442
+ "hubspot_send_email",
443
+ "hubspot_get_analytics",
444
+ "hubspot_create_note"
445
+ ],
446
+ "actions": [
447
+ "deal_report",
448
+ "contact_sync",
449
+ "marketing_report"
450
+ ],
451
+ "triggers": [
452
+ "contact_created",
453
+ "deal_stage_changed",
454
+ "form_submitted",
455
+ "email_opened"
456
+ ],
457
+ "rateLimit": { "requests": 100, "window": 10 }
458
+ },
459
+ {
460
+ "id": "calendly",
461
+ "name": "Calendly",
462
+ "category": "scheduling",
463
+ "description": "Events, scheduling, invitees",
464
+ "tools": [
465
+ "calendly_list_event_types",
466
+ "calendly_get_events",
467
+ "calendly_get_invitee",
468
+ "calendly_cancel_event",
469
+ "calendly_list_invitees",
470
+ "calendly_get_user"
471
+ ],
472
+ "actions": [
473
+ "booking_notify",
474
+ "calendar_sync"
475
+ ],
476
+ "triggers": [
477
+ "event_scheduled",
478
+ "event_cancelled",
479
+ "invitee_created"
480
+ ],
481
+ "rateLimit": { "requests": 30, "window": 60 }
482
+ },
483
+ {
484
+ "id": "google_calendar",
485
+ "name": "Google Calendar",
486
+ "category": "scheduling",
487
+ "description": "Events, calendars, reminders, availability",
488
+ "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"
497
+ ],
498
+ "actions": [
499
+ "availability_check",
500
+ "event_batch"
501
+ ],
502
+ "triggers": [
503
+ "event_created",
504
+ "event_updated",
505
+ "event_reminder"
506
+ ],
507
+ "rateLimit": { "requests": 100, "window": 60 }
508
+ },
509
+ {
510
+ "id": "gmail",
511
+ "name": "Gmail",
512
+ "category": "email",
513
+ "description": "Email, threads, labels, drafts, search",
514
+ "tools": [
515
+ "gmail_send_email",
516
+ "gmail_list_messages",
517
+ "gmail_get_message",
518
+ "gmail_trash_message",
519
+ "gmail_untrash_message",
520
+ "gmail_list_threads",
521
+ "gmail_get_thread",
522
+ "gmail_create_draft",
523
+ "gmail_list_drafts",
524
+ "gmail_send_draft",
525
+ "gmail_list_labels",
526
+ "gmail_create_label",
527
+ "gmail_get_profile",
528
+ "gmail_search"
529
+ ],
530
+ "actions": [
531
+ "email_digest",
532
+ "label_organizer",
533
+ "auto_responder"
534
+ ],
535
+ "triggers": [
536
+ "email_received",
537
+ "email_sent",
538
+ "label_applied"
539
+ ],
540
+ "rateLimit": { "requests": 100, "window": 60 }
541
+ },
542
+ {
543
+ "id": "google_sheets",
544
+ "name": "Google Sheets",
545
+ "category": "database",
546
+ "description": "Spreadsheets, cell values, formulas, batch operations",
547
+ "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"
558
+ ],
559
+ "actions": [
560
+ "sheet_sync",
561
+ "data_export",
562
+ "report_generate"
563
+ ],
564
+ "triggers": [
565
+ "row_added",
566
+ "cell_updated",
567
+ "sheet_created"
568
+ ],
569
+ "rateLimit": { "requests": 60, "window": 60 }
570
+ },
571
+ {
572
+ "id": "google_drive",
573
+ "name": "Google Drive",
574
+ "category": "storage",
575
+ "description": "Files, folders, sharing, permissions, search",
576
+ "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"
588
+ ],
589
+ "actions": [
590
+ "backup_files",
591
+ "share_batch",
592
+ "cleanup_old_files"
593
+ ],
594
+ "triggers": [
595
+ "file_created",
596
+ "file_modified",
597
+ "permission_changed"
598
+ ],
599
+ "rateLimit": { "requests": 100, "window": 60 }
600
+ },
601
+ {
602
+ "id": "jira",
603
+ "name": "Jira",
604
+ "category": "devtools",
605
+ "description": "Issues, sprints, boards, projects, JQL search",
606
+ "tools": [
607
+ "jira_search_issues",
608
+ "jira_create_issue",
609
+ "jira_get_issue",
610
+ "jira_update_issue",
611
+ "jira_delete_issue",
612
+ "jira_transition_issue",
613
+ "jira_get_transitions",
614
+ "jira_add_comment",
615
+ "jira_list_comments",
616
+ "jira_list_projects",
617
+ "jira_get_project",
618
+ "jira_assign_issue",
619
+ "jira_add_watcher",
620
+ "jira_list_sprints",
621
+ "jira_get_board"
622
+ ],
623
+ "actions": [
624
+ "sprint_report",
625
+ "issue_triage",
626
+ "backlog_cleanup"
627
+ ],
628
+ "triggers": [
629
+ "issue_created",
630
+ "issue_updated",
631
+ "issue_transitioned",
632
+ "sprint_started",
633
+ "sprint_completed"
634
+ ],
635
+ "rateLimit": { "requests": 100, "window": 60 }
636
+ },
637
+ {
638
+ "id": "zendesk",
639
+ "name": "Zendesk",
640
+ "category": "support",
641
+ "description": "Tickets, users, organizations, search, macros",
642
+ "tools": [
643
+ "zendesk_list_tickets",
644
+ "zendesk_get_ticket",
645
+ "zendesk_create_ticket",
646
+ "zendesk_update_ticket",
647
+ "zendesk_delete_ticket",
648
+ "zendesk_list_ticket_comments",
649
+ "zendesk_add_comment",
650
+ "zendesk_search",
651
+ "zendesk_list_users",
652
+ "zendesk_create_user",
653
+ "zendesk_get_user",
654
+ "zendesk_list_organizations",
655
+ "zendesk_list_macros",
656
+ "zendesk_get_ticket_metrics"
657
+ ],
658
+ "actions": [
659
+ "ticket_report",
660
+ "sla_monitor",
661
+ "auto_assign"
662
+ ],
663
+ "triggers": [
664
+ "ticket_created",
665
+ "ticket_updated",
666
+ "ticket_solved",
667
+ "ticket_overdue",
668
+ "satisfaction_rated"
669
+ ],
670
+ "rateLimit": { "requests": 100, "window": 60 }
671
+ },
672
+ {
673
+ "id": "mailchimp",
674
+ "name": "Mailchimp",
675
+ "category": "marketing",
676
+ "description": "Audiences, campaigns, automations, templates, analytics",
677
+ "tools": [
678
+ "mailchimp_list_audiences",
679
+ "mailchimp_get_audience",
680
+ "mailchimp_add_member",
681
+ "mailchimp_update_member",
682
+ "mailchimp_list_members",
683
+ "mailchimp_search_members",
684
+ "mailchimp_list_campaigns",
685
+ "mailchimp_create_campaign",
686
+ "mailchimp_send_campaign",
687
+ "mailchimp_get_campaign_report",
688
+ "mailchimp_list_templates",
689
+ "mailchimp_list_automations"
690
+ ],
691
+ "actions": [
692
+ "campaign_report",
693
+ "audience_sync",
694
+ "bounce_cleanup"
695
+ ],
696
+ "triggers": [
697
+ "subscriber_added",
698
+ "subscriber_unsubscribed",
699
+ "campaign_sent",
700
+ "email_opened",
701
+ "email_clicked"
702
+ ],
703
+ "rateLimit": { "requests": 10, "window": 1 }
704
+ },
705
+ {
706
+ "id": "zoom",
707
+ "name": "Zoom",
708
+ "category": "communication",
709
+ "description": "Meetings, recordings, webinars, users",
710
+ "tools": [
711
+ "zoom_list_meetings",
712
+ "zoom_create_meeting",
713
+ "zoom_get_meeting",
714
+ "zoom_update_meeting",
715
+ "zoom_delete_meeting",
716
+ "zoom_list_recordings",
717
+ "zoom_get_recording",
718
+ "zoom_delete_recording",
719
+ "zoom_list_users",
720
+ "zoom_get_user"
721
+ ],
722
+ "actions": [
723
+ "meeting_report",
724
+ "recording_export"
725
+ ],
726
+ "triggers": [
727
+ "meeting_started",
728
+ "meeting_ended",
729
+ "recording_completed",
730
+ "participant_joined"
731
+ ],
732
+ "rateLimit": { "requests": 30, "window": 1 }
733
+ },
734
+ {
735
+ "id": "microsoft",
736
+ "name": "Microsoft 365",
737
+ "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"
755
+ ],
756
+ "actions": [
757
+ "mail_digest",
758
+ "calendar_sync",
759
+ "file_backup"
760
+ ],
761
+ "triggers": [
762
+ "mail_received",
763
+ "event_created",
764
+ "file_modified",
765
+ "teams_message_received"
766
+ ],
767
+ "rateLimit": { "requests": 100, "window": 60 }
768
+ },
769
+ {
770
+ "id": "mongodb",
771
+ "name": "MongoDB",
772
+ "category": "database",
773
+ "description": "NoSQL documents, queries, aggregation via Atlas Data API",
774
+ "tools": [
775
+ "mongodb_find_one",
776
+ "mongodb_find_many",
777
+ "mongodb_insert_one",
778
+ "mongodb_insert_many",
779
+ "mongodb_update_one",
780
+ "mongodb_update_many",
781
+ "mongodb_delete_one",
782
+ "mongodb_aggregate",
783
+ "mongodb_count"
784
+ ],
785
+ "actions": [
786
+ "data_export",
787
+ "collection_sync",
788
+ "index_optimize"
789
+ ],
790
+ "triggers": [
791
+ "document_inserted",
792
+ "document_updated",
793
+ "document_deleted"
794
+ ],
795
+ "rateLimit": { "requests": 100, "window": 1 }
796
+ }
797
+ ],
798
+ "categories": {
799
+ "crm": { "label": "CRM", "icon": "users" },
800
+ "payments": { "label": "Payments", "icon": "credit-card" },
801
+ "communication": { "label": "Communication", "icon": "message-circle" },
802
+ "ai": { "label": "AI", "icon": "brain" },
803
+ "email": { "label": "Email", "icon": "mail" },
804
+ "database": { "label": "Database", "icon": "database" },
805
+ "productivity": { "label": "Productivity", "icon": "layout" },
806
+ "devtools": { "label": "Dev Tools", "icon": "code" },
807
+ "ecommerce": { "label": "E-Commerce", "icon": "shopping-cart" },
808
+ "scheduling": { "label": "Scheduling", "icon": "calendar" },
809
+ "storage": { "label": "Storage", "icon": "hard-drive" },
810
+ "support": { "label": "Support", "icon": "headphones" },
811
+ "marketing": { "label": "Marketing", "icon": "megaphone" }
812
+ }
813
+ }