@apteva/integrations 0.3.15 → 0.3.16

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,693 @@
1
+ {
2
+ "slug": "plaid",
3
+ "name": "Plaid",
4
+ "description": "MCP server for Plaid financial data - bank accounts, transactions, balances, identity, investments, liabilities, income, and payment initiation",
5
+ "logo": "https://www.google.com/s2/favicons?domain=plaid.com&sz=128",
6
+ "categories": [
7
+ "finance",
8
+ "banking",
9
+ "transactions",
10
+ "accounts",
11
+ "plaid",
12
+ "payments"
13
+ ],
14
+ "base_url": "",
15
+ "auth": {
16
+ "types": [
17
+ "bearer"
18
+ ],
19
+ "headers": {
20
+ "Authorization": "Bearer {{token}}"
21
+ },
22
+ "credential_fields": [
23
+ {
24
+ "name": "token",
25
+ "label": "API Key"
26
+ }
27
+ ]
28
+ },
29
+ "tools": [
30
+ {
31
+ "name": "create_link_token",
32
+ "description": "Create a Link token to initialize Plaid Link for connecting a user's bank account. Required before launching the Link flow.",
33
+ "method": "POST",
34
+ "path": "/create-link-token",
35
+ "input_schema": {
36
+ "type": "object",
37
+ "properties": {
38
+ "client_name": {
39
+ "type": "string",
40
+ "description": "Name of your application shown to users in Link"
41
+ },
42
+ "language": {
43
+ "type": "string",
44
+ "description": "Language for Link (en, fr, es, nl, de)",
45
+ "default": "en"
46
+ },
47
+ "country_codes": {
48
+ "type": "array",
49
+ "items": {
50
+ "type": "string"
51
+ },
52
+ "description": "Country codes (US, GB, ES, NL, FR, IE, CA, DE, IT, PL, DK, NO, SE, EE, LT, LV, PT, BE)"
53
+ },
54
+ "user": {
55
+ "type": "object",
56
+ "description": "User object with client_user_id",
57
+ "properties": {
58
+ "client_user_id": {
59
+ "type": "string",
60
+ "description": "Unique user identifier"
61
+ }
62
+ },
63
+ "required": [
64
+ "client_user_id"
65
+ ]
66
+ },
67
+ "products": {
68
+ "type": "array",
69
+ "items": {
70
+ "type": "string"
71
+ },
72
+ "description": "Products to enable: auth, transactions, identity, investments, liabilities, payment_initiation, assets, income_verification"
73
+ },
74
+ "redirect_uri": {
75
+ "type": "string",
76
+ "description": "OAuth redirect URI (required for OAuth institutions)"
77
+ },
78
+ "webhook": {
79
+ "type": "string",
80
+ "description": "Webhook URL for transaction and item updates"
81
+ }
82
+ },
83
+ "required": [
84
+ "client_name",
85
+ "country_codes",
86
+ "user",
87
+ "products"
88
+ ]
89
+ }
90
+ },
91
+ {
92
+ "name": "exchange_public_token",
93
+ "description": "Exchange a public_token from Plaid Link for a persistent access_token to access the user's financial data",
94
+ "method": "POST",
95
+ "path": "/exchange-public-token",
96
+ "input_schema": {
97
+ "type": "object",
98
+ "properties": {
99
+ "public_token": {
100
+ "type": "string",
101
+ "description": "The public_token returned by Plaid Link"
102
+ }
103
+ },
104
+ "required": [
105
+ "public_token"
106
+ ]
107
+ }
108
+ },
109
+ {
110
+ "name": "get_accounts",
111
+ "description": "Get all bank accounts linked to an access token including account names, types, balances, and masks",
112
+ "method": "POST",
113
+ "path": "/get-accounts",
114
+ "input_schema": {
115
+ "type": "object",
116
+ "properties": {
117
+ "account_ids": {
118
+ "type": "array",
119
+ "items": {
120
+ "type": "string"
121
+ },
122
+ "description": "Optional list of account_ids to filter"
123
+ }
124
+ }
125
+ }
126
+ },
127
+ {
128
+ "name": "get_balances",
129
+ "description": "Get real-time account balances for all or specific accounts. Returns current, available, and limit balances.",
130
+ "method": "POST",
131
+ "path": "/get-balances",
132
+ "input_schema": {
133
+ "type": "object",
134
+ "properties": {
135
+ "account_ids": {
136
+ "type": "array",
137
+ "items": {
138
+ "type": "string"
139
+ },
140
+ "description": "Optional list of account_ids to filter"
141
+ }
142
+ }
143
+ }
144
+ },
145
+ {
146
+ "name": "sync_transactions",
147
+ "description": "Get incremental transaction updates using cursor-based sync. Returns added, modified, and removed transactions since last sync.",
148
+ "method": "POST",
149
+ "path": "/sync-transactions",
150
+ "input_schema": {
151
+ "type": "object",
152
+ "properties": {
153
+ "cursor": {
154
+ "type": "string",
155
+ "description": "Cursor from previous sync response. Omit for initial sync."
156
+ },
157
+ "count": {
158
+ "type": "integer",
159
+ "description": "Number of transactions to return (max 500)"
160
+ },
161
+ "account_ids": {
162
+ "type": "array",
163
+ "items": {
164
+ "type": "string"
165
+ },
166
+ "description": "Optional account IDs to filter"
167
+ }
168
+ }
169
+ }
170
+ },
171
+ {
172
+ "name": "get_transactions",
173
+ "description": "Get transactions for a date range. Returns transaction details including amount, date, merchant, category, and location.",
174
+ "method": "POST",
175
+ "path": "/get-transactions",
176
+ "input_schema": {
177
+ "type": "object",
178
+ "properties": {
179
+ "start_date": {
180
+ "type": "string",
181
+ "description": "Start date (YYYY-MM-DD)"
182
+ },
183
+ "end_date": {
184
+ "type": "string",
185
+ "description": "End date (YYYY-MM-DD)"
186
+ },
187
+ "account_ids": {
188
+ "type": "array",
189
+ "items": {
190
+ "type": "string"
191
+ },
192
+ "description": "Optional account IDs to filter"
193
+ },
194
+ "count": {
195
+ "type": "integer",
196
+ "description": "Number of transactions to return (max 500)"
197
+ },
198
+ "offset": {
199
+ "type": "integer",
200
+ "description": "Offset for pagination"
201
+ }
202
+ },
203
+ "required": [
204
+ "start_date",
205
+ "end_date"
206
+ ]
207
+ }
208
+ },
209
+ {
210
+ "name": "get_recurring_transactions",
211
+ "description": "Get recurring transactions (subscriptions, bills) detected by Plaid with frequency, amount, and merchant info",
212
+ "method": "POST",
213
+ "path": "/get-recurring-transactions",
214
+ "input_schema": {
215
+ "type": "object",
216
+ "properties": {
217
+ "account_ids": {
218
+ "type": "array",
219
+ "items": {
220
+ "type": "string"
221
+ },
222
+ "description": "Optional account IDs to filter"
223
+ }
224
+ }
225
+ }
226
+ },
227
+ {
228
+ "name": "get_identity",
229
+ "description": "Get identity information (name, email, phone, address) for account holders as reported by the financial institution",
230
+ "method": "POST",
231
+ "path": "/get-identity",
232
+ "input_schema": {
233
+ "type": "object",
234
+ "properties": {
235
+ "account_ids": {
236
+ "type": "array",
237
+ "items": {
238
+ "type": "string"
239
+ },
240
+ "description": "Optional account IDs to filter"
241
+ }
242
+ }
243
+ }
244
+ },
245
+ {
246
+ "name": "get_auth",
247
+ "description": "Get bank account and routing numbers for ACH or EFT transfers",
248
+ "method": "POST",
249
+ "path": "/get-auth",
250
+ "input_schema": {
251
+ "type": "object",
252
+ "properties": {
253
+ "account_ids": {
254
+ "type": "array",
255
+ "items": {
256
+ "type": "string"
257
+ },
258
+ "description": "Optional account IDs to filter"
259
+ }
260
+ }
261
+ }
262
+ },
263
+ {
264
+ "name": "get_investments_holdings",
265
+ "description": "Get current investment holdings including securities, quantities, cost basis, and current values",
266
+ "method": "POST",
267
+ "path": "/get-investments-holdings",
268
+ "input_schema": {
269
+ "type": "object",
270
+ "properties": {
271
+ "account_ids": {
272
+ "type": "array",
273
+ "items": {
274
+ "type": "string"
275
+ },
276
+ "description": "Optional account IDs to filter"
277
+ }
278
+ }
279
+ }
280
+ },
281
+ {
282
+ "name": "get_investments_transactions",
283
+ "description": "Get investment transactions (buys, sells, dividends, transfers) for a date range",
284
+ "method": "POST",
285
+ "path": "/get-investments-transactions",
286
+ "input_schema": {
287
+ "type": "object",
288
+ "properties": {
289
+ "start_date": {
290
+ "type": "string",
291
+ "description": "Start date (YYYY-MM-DD)"
292
+ },
293
+ "end_date": {
294
+ "type": "string",
295
+ "description": "End date (YYYY-MM-DD)"
296
+ },
297
+ "account_ids": {
298
+ "type": "array",
299
+ "items": {
300
+ "type": "string"
301
+ },
302
+ "description": "Optional account IDs to filter"
303
+ },
304
+ "count": {
305
+ "type": "integer",
306
+ "description": "Number of transactions to return (max 500)"
307
+ },
308
+ "offset": {
309
+ "type": "integer",
310
+ "description": "Offset for pagination"
311
+ }
312
+ },
313
+ "required": [
314
+ "start_date",
315
+ "end_date"
316
+ ]
317
+ }
318
+ },
319
+ {
320
+ "name": "get_liabilities",
321
+ "description": "Get liability details for credit cards, mortgages, and student loans including balances, interest rates, and payment schedules",
322
+ "method": "POST",
323
+ "path": "/get-liabilities",
324
+ "input_schema": {
325
+ "type": "object",
326
+ "properties": {
327
+ "account_ids": {
328
+ "type": "array",
329
+ "items": {
330
+ "type": "string"
331
+ },
332
+ "description": "Optional account IDs to filter"
333
+ }
334
+ }
335
+ }
336
+ },
337
+ {
338
+ "name": "get_item",
339
+ "description": "Get information about a connected Item including institution, available products, webhook, and consent expiration",
340
+ "method": "POST",
341
+ "path": "/get-item",
342
+ "input_schema": {
343
+ "type": "object",
344
+ "properties": {}
345
+ }
346
+ },
347
+ {
348
+ "name": "remove_item",
349
+ "description": "Remove a connected Item, revoking the access_token and disconnecting the bank",
350
+ "method": "POST",
351
+ "path": "/remove-item",
352
+ "input_schema": {
353
+ "type": "object",
354
+ "properties": {}
355
+ }
356
+ },
357
+ {
358
+ "name": "update_item_webhook",
359
+ "description": "Update the webhook URL for an Item",
360
+ "method": "POST",
361
+ "path": "/update-item-webhook",
362
+ "input_schema": {
363
+ "type": "object",
364
+ "properties": {
365
+ "webhook": {
366
+ "type": "string",
367
+ "description": "New webhook URL"
368
+ }
369
+ },
370
+ "required": [
371
+ "webhook"
372
+ ]
373
+ }
374
+ },
375
+ {
376
+ "name": "search_institutions",
377
+ "description": "Search for financial institutions by name or ID, with optional country and product filters",
378
+ "method": "POST",
379
+ "path": "/search-institutions",
380
+ "input_schema": {
381
+ "type": "object",
382
+ "properties": {
383
+ "query": {
384
+ "type": "string",
385
+ "description": "Search query (institution name)"
386
+ },
387
+ "products": {
388
+ "type": "array",
389
+ "items": {
390
+ "type": "string"
391
+ },
392
+ "description": "Filter by supported products"
393
+ },
394
+ "country_codes": {
395
+ "type": "array",
396
+ "items": {
397
+ "type": "string"
398
+ },
399
+ "description": "Filter by country codes"
400
+ },
401
+ "count": {
402
+ "type": "integer",
403
+ "description": "Number of results (max 500)"
404
+ },
405
+ "offset": {
406
+ "type": "integer",
407
+ "description": "Offset for pagination"
408
+ }
409
+ },
410
+ "required": [
411
+ "query",
412
+ "country_codes"
413
+ ]
414
+ }
415
+ },
416
+ {
417
+ "name": "get_institution",
418
+ "description": "Get details about a specific financial institution by ID including products, URL, logo, and status",
419
+ "method": "POST",
420
+ "path": "/get-institution",
421
+ "input_schema": {
422
+ "type": "object",
423
+ "properties": {
424
+ "institution_id": {
425
+ "type": "string",
426
+ "description": "The Plaid institution ID (ins_xxx)"
427
+ },
428
+ "country_codes": {
429
+ "type": "array",
430
+ "items": {
431
+ "type": "string"
432
+ },
433
+ "description": "Country codes for the institution"
434
+ }
435
+ },
436
+ "required": [
437
+ "institution_id",
438
+ "country_codes"
439
+ ]
440
+ }
441
+ },
442
+ {
443
+ "name": "get_categories",
444
+ "description": "Get the full list of Plaid transaction categories",
445
+ "method": "POST",
446
+ "path": "/get-categories",
447
+ "input_schema": {
448
+ "type": "object",
449
+ "properties": {}
450
+ }
451
+ },
452
+ {
453
+ "name": "create_payment_recipient",
454
+ "description": "Create a payment recipient for payment initiation (UK/EU). Supports IBAN and BACS.",
455
+ "method": "POST",
456
+ "path": "/create-payment-recipient",
457
+ "input_schema": {
458
+ "type": "object",
459
+ "properties": {
460
+ "name": {
461
+ "type": "string",
462
+ "description": "Recipient name"
463
+ },
464
+ "iban": {
465
+ "type": "string",
466
+ "description": "IBAN for the recipient"
467
+ },
468
+ "bacs": {
469
+ "type": "object",
470
+ "description": "UK BACS details",
471
+ "properties": {
472
+ "account": {
473
+ "type": "string"
474
+ },
475
+ "sort_code": {
476
+ "type": "string"
477
+ }
478
+ }
479
+ },
480
+ "address": {
481
+ "type": "object",
482
+ "description": "Recipient address",
483
+ "properties": {
484
+ "street": {
485
+ "type": "array",
486
+ "items": {
487
+ "type": "string"
488
+ }
489
+ },
490
+ "city": {
491
+ "type": "string"
492
+ },
493
+ "postal_code": {
494
+ "type": "string"
495
+ },
496
+ "country": {
497
+ "type": "string"
498
+ }
499
+ }
500
+ }
501
+ },
502
+ "required": [
503
+ "name"
504
+ ]
505
+ }
506
+ },
507
+ {
508
+ "name": "create_payment",
509
+ "description": "Initiate a payment to a recipient. Creates a payment_id to use with Link for user authorization.",
510
+ "method": "POST",
511
+ "path": "/create-payment",
512
+ "input_schema": {
513
+ "type": "object",
514
+ "properties": {
515
+ "recipient_id": {
516
+ "type": "string",
517
+ "description": "The recipient_id from create-payment-recipient"
518
+ },
519
+ "reference": {
520
+ "type": "string",
521
+ "description": "Payment reference (max 18 chars for UK)"
522
+ },
523
+ "amount": {
524
+ "type": "object",
525
+ "description": "Payment amount",
526
+ "properties": {
527
+ "currency": {
528
+ "type": "string",
529
+ "description": "ISO 4217 currency code (GBP, EUR)"
530
+ },
531
+ "value": {
532
+ "type": "number",
533
+ "description": "Amount in major currency units"
534
+ }
535
+ },
536
+ "required": [
537
+ "currency",
538
+ "value"
539
+ ]
540
+ }
541
+ },
542
+ "required": [
543
+ "recipient_id",
544
+ "reference",
545
+ "amount"
546
+ ]
547
+ }
548
+ },
549
+ {
550
+ "name": "get_payment",
551
+ "description": "Get the status and details of a payment",
552
+ "method": "POST",
553
+ "path": "/get-payment",
554
+ "input_schema": {
555
+ "type": "object",
556
+ "properties": {
557
+ "payment_id": {
558
+ "type": "string",
559
+ "description": "The payment_id to check"
560
+ }
561
+ },
562
+ "required": [
563
+ "payment_id"
564
+ ]
565
+ }
566
+ },
567
+ {
568
+ "name": "list_payments",
569
+ "description": "List all payments with their statuses",
570
+ "method": "POST",
571
+ "path": "/list-payments",
572
+ "input_schema": {
573
+ "type": "object",
574
+ "properties": {
575
+ "count": {
576
+ "type": "integer",
577
+ "description": "Number of payments to return (max 200)"
578
+ },
579
+ "cursor": {
580
+ "type": "string",
581
+ "description": "Pagination cursor from previous response"
582
+ }
583
+ }
584
+ }
585
+ },
586
+ {
587
+ "name": "create_transfer_authorization",
588
+ "description": "Create an authorization for an ACH transfer. Must be authorized before creating the transfer.",
589
+ "method": "POST",
590
+ "path": "/create-transfer-authorization",
591
+ "input_schema": {
592
+ "type": "object",
593
+ "properties": {
594
+ "account_id": {
595
+ "type": "string",
596
+ "description": "The account_id to transfer from/to"
597
+ },
598
+ "type": {
599
+ "type": "string",
600
+ "enum": [
601
+ "debit",
602
+ "credit"
603
+ ],
604
+ "description": "Transfer type: debit (pull money) or credit (push money)"
605
+ },
606
+ "network": {
607
+ "type": "string",
608
+ "enum": [
609
+ "ach",
610
+ "same-day-ach",
611
+ "rtp"
612
+ ],
613
+ "description": "Transfer network"
614
+ },
615
+ "amount": {
616
+ "type": "string",
617
+ "description": "Transfer amount as decimal string (e.g. '100.00')"
618
+ },
619
+ "ach_class": {
620
+ "type": "string",
621
+ "description": "ACH class: ppd, ccd, web",
622
+ "default": "ppd"
623
+ },
624
+ "user": {
625
+ "type": "object",
626
+ "description": "Transfer user details",
627
+ "properties": {
628
+ "legal_name": {
629
+ "type": "string"
630
+ }
631
+ },
632
+ "required": [
633
+ "legal_name"
634
+ ]
635
+ }
636
+ },
637
+ "required": [
638
+ "account_id",
639
+ "type",
640
+ "network",
641
+ "amount",
642
+ "user"
643
+ ]
644
+ }
645
+ },
646
+ {
647
+ "name": "create_transfer",
648
+ "description": "Create an ACH transfer after authorization. Moves money between bank accounts.",
649
+ "method": "POST",
650
+ "path": "/create-transfer",
651
+ "input_schema": {
652
+ "type": "object",
653
+ "properties": {
654
+ "account_id": {
655
+ "type": "string",
656
+ "description": "The account_id"
657
+ },
658
+ "authorization_id": {
659
+ "type": "string",
660
+ "description": "The authorization_id from create-transfer-authorization"
661
+ },
662
+ "description": {
663
+ "type": "string",
664
+ "description": "Transfer description (max 10 chars for ACH)"
665
+ }
666
+ },
667
+ "required": [
668
+ "account_id",
669
+ "authorization_id",
670
+ "description"
671
+ ]
672
+ }
673
+ },
674
+ {
675
+ "name": "get_transfer",
676
+ "description": "Get the status and details of a transfer",
677
+ "method": "POST",
678
+ "path": "/get-transfer",
679
+ "input_schema": {
680
+ "type": "object",
681
+ "properties": {
682
+ "transfer_id": {
683
+ "type": "string",
684
+ "description": "The transfer_id to check"
685
+ }
686
+ },
687
+ "required": [
688
+ "transfer_id"
689
+ ]
690
+ }
691
+ }
692
+ ]
693
+ }