@apteva/integrations 0.15.10 → 0.15.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/http-executor.d.ts.map +1 -1
- package/dist/http-executor.js +62 -8
- package/dist/http-executor.js.map +1 -1
- package/dist/mcp-generator.js +24 -0
- package/dist/mcp-generator.js.map +1 -1
- package/dist/types.d.ts +4 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/apps/anthropic-admin.json +183 -0
- package/src/apps/aws-ses.json +1 -1
- package/src/apps/braintree.json +53 -0
- package/src/apps/bunny-stream.json +50 -28
- package/src/apps/ccbill.json +142 -0
- package/src/apps/close.json +238 -301
- package/src/apps/craftcloud.json +251 -202
- package/src/apps/dataforseo.json +1700 -2
- package/src/apps/deepgram.json +288 -1
- package/src/apps/elevenlabs.json +9 -0
- package/src/apps/gladia.json +158 -0
- package/src/apps/gmail.json +2 -5
- package/src/apps/gumroad.json +569 -0
- package/src/apps/imaterialise.json +171 -262
- package/src/apps/jlcpcb.json +43 -0
- package/src/apps/jungle-scout.json +166 -0
- package/src/apps/ko-fi.json +34 -0
- package/src/apps/lemon-squeezy.json +270 -0
- package/src/apps/mollie.json +219 -0
- package/src/apps/paddle.json +199 -9
- package/src/apps/payhip.json +162 -0
- package/src/apps/paystack.json +207 -0
- package/src/apps/pipedrive.json +221 -212
- package/src/apps/razorpay.json +207 -0
- package/src/apps/ringover.json +69 -0
- package/src/apps/runpod.json +727 -0
- package/src/apps/salesforce-crm.json +192 -233
- package/src/apps/sculpteo.json +98 -180
- package/src/apps/segpay.json +215 -0
- package/src/apps/shapeways.json +114 -136
- package/src/apps/slant3d.json +260 -168
- package/src/apps/soniox.json +194 -0
- package/src/apps/speechmatics.json +167 -0
- package/src/apps/stripe.json +1 -0
- package/src/apps/surfer.json +511 -0
- package/src/apps/twitter-api.json +14 -1
- package/src/apps/verotel.json +124 -0
- package/src/apps/whop.json +364 -0
- package/src/apps/zendesk-sell.json +248 -0
- package/src/apps/zendesk.json +190 -259
package/src/apps/deepgram.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
{
|
|
15
15
|
"name": "api_key",
|
|
16
16
|
"label": "Deepgram API Key",
|
|
17
|
-
"description": "Create one at https://console.deepgram.com/project/default/keys
|
|
17
|
+
"description": "Create one at https://console.deepgram.com/project/default/keys. Speech calls need the normal request scopes; reporting tools need usage:read, and billing/balance/purchase tools need billing:read."
|
|
18
18
|
}
|
|
19
19
|
]
|
|
20
20
|
},
|
|
@@ -345,6 +345,293 @@
|
|
|
345
345
|
},
|
|
346
346
|
"required": ["project_id", "model_id"]
|
|
347
347
|
}
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"name": "get_usage",
|
|
351
|
+
"description": "Get raw Deepgram usage records for a project over a date range. Use this for detailed request-level usage auditing before summarizing cost. Dates use YYYY-MM-DD. Start with list_usage_fields to discover valid models, tags, features, and processing methods.",
|
|
352
|
+
"method": "GET",
|
|
353
|
+
"path": "/v1/projects/{project_id}/usage",
|
|
354
|
+
"timeout_ms": 60000,
|
|
355
|
+
"input_schema": {
|
|
356
|
+
"type": "object",
|
|
357
|
+
"properties": {
|
|
358
|
+
"project_id": {
|
|
359
|
+
"type": "string",
|
|
360
|
+
"description": "Target project id from list_projects."
|
|
361
|
+
},
|
|
362
|
+
"start": {
|
|
363
|
+
"type": "string",
|
|
364
|
+
"description": "Start date, YYYY-MM-DD."
|
|
365
|
+
},
|
|
366
|
+
"end": {
|
|
367
|
+
"type": "string",
|
|
368
|
+
"description": "End date, YYYY-MM-DD."
|
|
369
|
+
},
|
|
370
|
+
"accessor": {
|
|
371
|
+
"type": "string",
|
|
372
|
+
"description": "Filter by accessor UUID."
|
|
373
|
+
},
|
|
374
|
+
"deployment": {
|
|
375
|
+
"type": "string",
|
|
376
|
+
"description": "Filter by deployment type such as hosted, beta, self-hosted, or dedicated."
|
|
377
|
+
},
|
|
378
|
+
"endpoint": {
|
|
379
|
+
"type": "string",
|
|
380
|
+
"description": "Filter by API endpoint."
|
|
381
|
+
},
|
|
382
|
+
"method": {
|
|
383
|
+
"type": "string",
|
|
384
|
+
"description": "Filter by processing method, for example sync, async, or streaming."
|
|
385
|
+
},
|
|
386
|
+
"model": {
|
|
387
|
+
"type": "string",
|
|
388
|
+
"description": "Filter by model id."
|
|
389
|
+
},
|
|
390
|
+
"tag": {
|
|
391
|
+
"type": "string",
|
|
392
|
+
"description": "Filter by request tag."
|
|
393
|
+
},
|
|
394
|
+
"language": {
|
|
395
|
+
"type": "string",
|
|
396
|
+
"description": "Filter by language code."
|
|
397
|
+
},
|
|
398
|
+
"punctuate": {
|
|
399
|
+
"type": "boolean",
|
|
400
|
+
"description": "Filter by whether punctuate was enabled."
|
|
401
|
+
},
|
|
402
|
+
"smart_format": {
|
|
403
|
+
"type": "boolean",
|
|
404
|
+
"description": "Filter by whether smart_format was enabled."
|
|
405
|
+
},
|
|
406
|
+
"diarize": {
|
|
407
|
+
"type": "boolean",
|
|
408
|
+
"description": "Filter by whether diarize was enabled."
|
|
409
|
+
},
|
|
410
|
+
"detect_language": {
|
|
411
|
+
"type": "boolean",
|
|
412
|
+
"description": "Filter by whether language detection was enabled."
|
|
413
|
+
},
|
|
414
|
+
"summarize": {
|
|
415
|
+
"type": "string",
|
|
416
|
+
"description": "Filter by summarization setting."
|
|
417
|
+
},
|
|
418
|
+
"topics": {
|
|
419
|
+
"type": "boolean",
|
|
420
|
+
"description": "Filter by whether topic detection was enabled."
|
|
421
|
+
},
|
|
422
|
+
"intents": {
|
|
423
|
+
"type": "boolean",
|
|
424
|
+
"description": "Filter by whether intent detection was enabled."
|
|
425
|
+
},
|
|
426
|
+
"sentiment": {
|
|
427
|
+
"type": "boolean",
|
|
428
|
+
"description": "Filter by whether sentiment analysis was enabled."
|
|
429
|
+
}
|
|
430
|
+
},
|
|
431
|
+
"required": ["project_id"]
|
|
432
|
+
},
|
|
433
|
+
"query_params": ["start", "end", "accessor", "deployment", "endpoint", "method", "model", "tag", "language", "punctuate", "smart_format", "diarize", "detect_language", "summarize", "topics", "intents", "sentiment"]
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"name": "get_usage_breakdown",
|
|
437
|
+
"description": "Aggregate Deepgram usage for a project by fields such as accessor, endpoint, feature_set, models, method, tags, and deployment. Use this to answer questions like which models or tags drove usage this month.",
|
|
438
|
+
"method": "GET",
|
|
439
|
+
"path": "/v1/projects/{project_id}/usage/breakdown",
|
|
440
|
+
"timeout_ms": 60000,
|
|
441
|
+
"input_schema": {
|
|
442
|
+
"type": "object",
|
|
443
|
+
"properties": {
|
|
444
|
+
"project_id": {
|
|
445
|
+
"type": "string",
|
|
446
|
+
"description": "Target project id from list_projects."
|
|
447
|
+
},
|
|
448
|
+
"start": {
|
|
449
|
+
"type": "string",
|
|
450
|
+
"description": "Start date, YYYY-MM-DD."
|
|
451
|
+
},
|
|
452
|
+
"end": {
|
|
453
|
+
"type": "string",
|
|
454
|
+
"description": "End date, YYYY-MM-DD."
|
|
455
|
+
},
|
|
456
|
+
"grouping": {
|
|
457
|
+
"type": "array",
|
|
458
|
+
"description": "Fields to group by. Official values: accessor, endpoint, feature_set, models, method, tags, deployment.",
|
|
459
|
+
"items": {
|
|
460
|
+
"type": "string",
|
|
461
|
+
"enum": ["accessor", "endpoint", "feature_set", "models", "method", "tags", "deployment"]
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
"accessor": {
|
|
465
|
+
"type": "string",
|
|
466
|
+
"description": "Filter by accessor UUID."
|
|
467
|
+
},
|
|
468
|
+
"deployment": {
|
|
469
|
+
"type": "string",
|
|
470
|
+
"description": "Filter by deployment type."
|
|
471
|
+
},
|
|
472
|
+
"endpoint": {
|
|
473
|
+
"type": "string",
|
|
474
|
+
"description": "Filter by API endpoint."
|
|
475
|
+
},
|
|
476
|
+
"method": {
|
|
477
|
+
"type": "string",
|
|
478
|
+
"description": "Filter by processing method."
|
|
479
|
+
},
|
|
480
|
+
"model": {
|
|
481
|
+
"type": "string",
|
|
482
|
+
"description": "Filter by model id."
|
|
483
|
+
},
|
|
484
|
+
"tag": {
|
|
485
|
+
"type": "string",
|
|
486
|
+
"description": "Filter by request tag."
|
|
487
|
+
},
|
|
488
|
+
"language": {
|
|
489
|
+
"type": "string",
|
|
490
|
+
"description": "Filter by language code."
|
|
491
|
+
}
|
|
492
|
+
},
|
|
493
|
+
"required": ["project_id"]
|
|
494
|
+
},
|
|
495
|
+
"query_params": ["start", "end", "grouping", "accessor", "deployment", "endpoint", "method", "model", "tag", "language"]
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"name": "list_usage_fields",
|
|
499
|
+
"description": "List usage filter fields available for a project in a date range: tags, models, processing methods, and features. Call this before get_usage or get_usage_breakdown when an agent needs valid filter values.",
|
|
500
|
+
"method": "GET",
|
|
501
|
+
"path": "/v1/projects/{project_id}/usage/fields",
|
|
502
|
+
"input_schema": {
|
|
503
|
+
"type": "object",
|
|
504
|
+
"properties": {
|
|
505
|
+
"project_id": {
|
|
506
|
+
"type": "string",
|
|
507
|
+
"description": "Target project id from list_projects."
|
|
508
|
+
},
|
|
509
|
+
"start": {
|
|
510
|
+
"type": "string",
|
|
511
|
+
"description": "Start date, YYYY-MM-DD."
|
|
512
|
+
},
|
|
513
|
+
"end": {
|
|
514
|
+
"type": "string",
|
|
515
|
+
"description": "End date, YYYY-MM-DD."
|
|
516
|
+
}
|
|
517
|
+
},
|
|
518
|
+
"required": ["project_id"]
|
|
519
|
+
},
|
|
520
|
+
"query_params": ["start", "end"]
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"name": "get_billing_breakdown",
|
|
524
|
+
"description": "Get Deepgram billing cost breakdown for a project. Results include USD dollar amounts, so this is the primary tool for questions like 'how much did Deepgram cost this month?' Use start/end dates in YYYY-MM-DD and optional grouping such as accessor, deployment, line_item, or tags.",
|
|
525
|
+
"method": "GET",
|
|
526
|
+
"path": "/v1/projects/{project_id}/billing/breakdown",
|
|
527
|
+
"timeout_ms": 60000,
|
|
528
|
+
"input_schema": {
|
|
529
|
+
"type": "object",
|
|
530
|
+
"properties": {
|
|
531
|
+
"project_id": {
|
|
532
|
+
"type": "string",
|
|
533
|
+
"description": "Target project id from list_projects."
|
|
534
|
+
},
|
|
535
|
+
"start": {
|
|
536
|
+
"type": "string",
|
|
537
|
+
"description": "Start date, YYYY-MM-DD."
|
|
538
|
+
},
|
|
539
|
+
"end": {
|
|
540
|
+
"type": "string",
|
|
541
|
+
"description": "End date, YYYY-MM-DD."
|
|
542
|
+
},
|
|
543
|
+
"grouping": {
|
|
544
|
+
"type": "array",
|
|
545
|
+
"description": "Fields to group by. Official values include accessor, deployment, line_item, and tags.",
|
|
546
|
+
"items": {
|
|
547
|
+
"type": "string",
|
|
548
|
+
"enum": ["accessor", "deployment", "line_item", "tags"]
|
|
549
|
+
}
|
|
550
|
+
},
|
|
551
|
+
"accessor": {
|
|
552
|
+
"type": "string",
|
|
553
|
+
"description": "Filter by accessor UUID."
|
|
554
|
+
},
|
|
555
|
+
"deployment": {
|
|
556
|
+
"type": "string",
|
|
557
|
+
"description": "Filter by deployment type."
|
|
558
|
+
},
|
|
559
|
+
"tag": {
|
|
560
|
+
"type": "string",
|
|
561
|
+
"description": "Filter by billing tag."
|
|
562
|
+
},
|
|
563
|
+
"line_item": {
|
|
564
|
+
"type": "string",
|
|
565
|
+
"description": "Filter by billing line item."
|
|
566
|
+
}
|
|
567
|
+
},
|
|
568
|
+
"required": ["project_id"]
|
|
569
|
+
},
|
|
570
|
+
"query_params": ["start", "end", "grouping", "accessor", "deployment", "tag", "line_item"]
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"name": "list_billing_fields",
|
|
574
|
+
"description": "List billing filter fields available for a project in a date range: accessors, deployments, tags, and line_items. Use this to discover valid filters before get_billing_breakdown.",
|
|
575
|
+
"method": "GET",
|
|
576
|
+
"path": "/v1/projects/{project_id}/billing/fields",
|
|
577
|
+
"input_schema": {
|
|
578
|
+
"type": "object",
|
|
579
|
+
"properties": {
|
|
580
|
+
"project_id": {
|
|
581
|
+
"type": "string",
|
|
582
|
+
"description": "Target project id from list_projects."
|
|
583
|
+
},
|
|
584
|
+
"start": {
|
|
585
|
+
"type": "string",
|
|
586
|
+
"description": "Start date, YYYY-MM-DD."
|
|
587
|
+
},
|
|
588
|
+
"end": {
|
|
589
|
+
"type": "string",
|
|
590
|
+
"description": "End date, YYYY-MM-DD."
|
|
591
|
+
}
|
|
592
|
+
},
|
|
593
|
+
"required": ["project_id"]
|
|
594
|
+
},
|
|
595
|
+
"query_params": ["start", "end"]
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"name": "list_balances",
|
|
599
|
+
"description": "List outstanding Deepgram balances for a project, including amount, units, balance_id, and purchase_order_id.",
|
|
600
|
+
"method": "GET",
|
|
601
|
+
"path": "/v1/projects/{project_id}/balances",
|
|
602
|
+
"input_schema": {
|
|
603
|
+
"type": "object",
|
|
604
|
+
"properties": {
|
|
605
|
+
"project_id": {
|
|
606
|
+
"type": "string",
|
|
607
|
+
"description": "Target project id from list_projects."
|
|
608
|
+
}
|
|
609
|
+
},
|
|
610
|
+
"required": ["project_id"]
|
|
611
|
+
}
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"name": "list_purchases",
|
|
615
|
+
"description": "List Deepgram project purchases and order transactions, including amount, units, created date, expiration, order_id, and order_type.",
|
|
616
|
+
"method": "GET",
|
|
617
|
+
"path": "/v1/projects/{project_id}/purchases",
|
|
618
|
+
"input_schema": {
|
|
619
|
+
"type": "object",
|
|
620
|
+
"properties": {
|
|
621
|
+
"project_id": {
|
|
622
|
+
"type": "string",
|
|
623
|
+
"description": "Target project id from list_projects."
|
|
624
|
+
},
|
|
625
|
+
"limit": {
|
|
626
|
+
"type": "integer",
|
|
627
|
+
"description": "Number of purchases to return. Default 10, maximum 1000.",
|
|
628
|
+
"minimum": 1,
|
|
629
|
+
"maximum": 1000
|
|
630
|
+
}
|
|
631
|
+
},
|
|
632
|
+
"required": ["project_id"]
|
|
633
|
+
},
|
|
634
|
+
"query_params": ["limit"]
|
|
348
635
|
}
|
|
349
636
|
]
|
|
350
637
|
}
|
package/src/apps/elevenlabs.json
CHANGED
|
@@ -539,6 +539,15 @@
|
|
|
539
539
|
"maxLength": 1000,
|
|
540
540
|
"description": "Description of the voice to create, including age, gender, accent, tone, pacing, and audio quality."
|
|
541
541
|
},
|
|
542
|
+
"model_id": {
|
|
543
|
+
"type": "string",
|
|
544
|
+
"enum": [
|
|
545
|
+
"eleven_ttv_v3",
|
|
546
|
+
"eleven_multilingual_ttv_v2"
|
|
547
|
+
],
|
|
548
|
+
"default": "eleven_ttv_v3",
|
|
549
|
+
"description": "ElevenLabs Voice Design model. Use eleven_ttv_v3 for the newer expressive voice design model, or eleven_multilingual_ttv_v2 for the previous multilingual voice design model."
|
|
550
|
+
},
|
|
542
551
|
"text": {
|
|
543
552
|
"type": "string",
|
|
544
553
|
"minLength": 100,
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "gladia",
|
|
3
|
+
"name": "Gladia",
|
|
4
|
+
"description": "Gladia v2 speech-to-text API for pre-recorded transcription, uploads, diarization, translation, summarization, subtitles, sentiment, NER, PII redaction, and custom metadata.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=gladia.io&sz=128",
|
|
6
|
+
"categories": ["ai", "speech", "speech-to-text", "transcription", "audio-intelligence"],
|
|
7
|
+
"base_url": "https://api.gladia.io",
|
|
8
|
+
"auth": {
|
|
9
|
+
"types": ["api_key"],
|
|
10
|
+
"headers": {
|
|
11
|
+
"x-gladia-key": "{{api_key}}",
|
|
12
|
+
"Content-Type": "application/json"
|
|
13
|
+
},
|
|
14
|
+
"credential_fields": [
|
|
15
|
+
{
|
|
16
|
+
"name": "api_key",
|
|
17
|
+
"label": "API Key",
|
|
18
|
+
"description": "Gladia API key from app.gladia.io/apikeys."
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
"tools": [
|
|
23
|
+
{
|
|
24
|
+
"name": "upload_audio_url",
|
|
25
|
+
"description": "Ask Gladia to ingest an audio/video URL and return a Gladia audio_url usable by create_transcription.",
|
|
26
|
+
"method": "POST",
|
|
27
|
+
"path": "/v2/upload",
|
|
28
|
+
"input_schema": {
|
|
29
|
+
"type": "object",
|
|
30
|
+
"properties": {
|
|
31
|
+
"audio_url": { "type": "string", "description": "Publicly reachable audio or video URL." }
|
|
32
|
+
},
|
|
33
|
+
"required": ["audio_url"]
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "upload_audio_file",
|
|
38
|
+
"description": "Upload an audio/video file to Gladia and return a Gladia audio_url usable by create_transcription.",
|
|
39
|
+
"method": "POST",
|
|
40
|
+
"path": "/v2/upload",
|
|
41
|
+
"timeout_ms": 600000,
|
|
42
|
+
"multipart_form": {
|
|
43
|
+
"file_fields": { "audio": "audio" }
|
|
44
|
+
},
|
|
45
|
+
"input_schema": {
|
|
46
|
+
"type": "object",
|
|
47
|
+
"properties": {
|
|
48
|
+
"audio": { "type": "string", "description": "Audio/video file content as blobref://, base64, data URL, or raw string." },
|
|
49
|
+
"audio_filename": { "type": "string", "description": "Optional filename for the multipart upload." }
|
|
50
|
+
},
|
|
51
|
+
"required": ["audio"]
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "create_transcription",
|
|
56
|
+
"description": "Initiate a Gladia v2 pre-recorded transcription. Use audio_url from upload_audio_url/upload_audio_file or an external URL. Optional add-ons include diarization, subtitles, translation, summarization, NER, sentiment, PII redaction, audio_to_llm, sentences, and custom metadata.",
|
|
57
|
+
"method": "POST",
|
|
58
|
+
"path": "/v2/pre-recorded",
|
|
59
|
+
"timeout_ms": 600000,
|
|
60
|
+
"input_schema": {
|
|
61
|
+
"type": "object",
|
|
62
|
+
"properties": {
|
|
63
|
+
"audio_url": { "type": "string" },
|
|
64
|
+
"model": { "type": "string", "description": "solaria-1 or solaria-3 where available." },
|
|
65
|
+
"language_config": { "type": "object", "description": "Language config, e.g. {\"languages\":[\"en\"],\"code_switching\":false}." },
|
|
66
|
+
"callback": { "type": "boolean" },
|
|
67
|
+
"callback_config": { "type": "object" },
|
|
68
|
+
"diarization": { "type": "boolean" },
|
|
69
|
+
"diarization_config": { "type": "object" },
|
|
70
|
+
"subtitles": { "type": "boolean" },
|
|
71
|
+
"subtitles_config": { "type": "object" },
|
|
72
|
+
"translation": { "type": "boolean" },
|
|
73
|
+
"translation_config": { "type": "object" },
|
|
74
|
+
"summarization": { "type": "boolean" },
|
|
75
|
+
"summarization_config": { "type": "object" },
|
|
76
|
+
"named_entity_recognition": { "type": "boolean" },
|
|
77
|
+
"sentiment_analysis": { "type": "boolean" },
|
|
78
|
+
"pii_redaction": { "type": "boolean" },
|
|
79
|
+
"pii_redaction_config": { "type": "object" },
|
|
80
|
+
"audio_to_llm": { "type": "boolean" },
|
|
81
|
+
"audio_to_llm_config": { "type": "object" },
|
|
82
|
+
"custom_vocabulary": { "type": ["boolean", "array"] },
|
|
83
|
+
"custom_vocabulary_config": { "type": "object" },
|
|
84
|
+
"custom_spelling": { "type": "boolean" },
|
|
85
|
+
"custom_spelling_config": { "type": "object" },
|
|
86
|
+
"custom_metadata": { "type": "object" },
|
|
87
|
+
"sentences": { "type": "boolean" },
|
|
88
|
+
"punctuation_enhanced": { "type": "boolean" }
|
|
89
|
+
},
|
|
90
|
+
"required": ["audio_url"]
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "create_transcription_raw",
|
|
95
|
+
"description": "Initiate a Gladia pre-recorded transcription with a raw request body. Use this when the standard tool schema does not expose a new Gladia option yet.",
|
|
96
|
+
"method": "POST",
|
|
97
|
+
"path": "/v2/pre-recorded",
|
|
98
|
+
"timeout_ms": 600000,
|
|
99
|
+
"body_root_param": "body",
|
|
100
|
+
"input_schema": { "type": "object", "properties": { "body": { "type": "object" } }, "required": ["body"] }
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "list_transcriptions",
|
|
104
|
+
"description": "List Gladia pre-recorded transcriptions with pagination, date, status, and metadata filters.",
|
|
105
|
+
"method": "GET",
|
|
106
|
+
"path": "/v2/pre-recorded",
|
|
107
|
+
"input_schema": {
|
|
108
|
+
"type": "object",
|
|
109
|
+
"properties": {
|
|
110
|
+
"offset": { "type": "integer" },
|
|
111
|
+
"limit": { "type": "integer" },
|
|
112
|
+
"date": { "type": "string" },
|
|
113
|
+
"before_date": { "type": "string" },
|
|
114
|
+
"after_date": { "type": "string" },
|
|
115
|
+
"status": { "type": "string", "description": "queued, processing, done, or error." }
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "get_transcription",
|
|
121
|
+
"description": "Get a Gladia pre-recorded transcription status, parameters, and result. Result is available when status is done.",
|
|
122
|
+
"method": "GET",
|
|
123
|
+
"path": "/v2/pre-recorded/{id}",
|
|
124
|
+
"timeout_ms": 300000,
|
|
125
|
+
"input_schema": { "type": "object", "properties": { "id": { "type": "string" } }, "required": ["id"] }
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "download_audio",
|
|
129
|
+
"description": "Download the audio file used by a Gladia pre-recorded transcription.",
|
|
130
|
+
"method": "GET",
|
|
131
|
+
"path": "/v2/pre-recorded/{id}/file",
|
|
132
|
+
"timeout_ms": 600000,
|
|
133
|
+
"input_schema": { "type": "object", "properties": { "id": { "type": "string" } }, "required": ["id"] }
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "delete_transcription",
|
|
137
|
+
"description": "Delete a Gladia pre-recorded transcription and all related data.",
|
|
138
|
+
"method": "DELETE",
|
|
139
|
+
"path": "/v2/pre-recorded/{id}",
|
|
140
|
+
"input_schema": { "type": "object", "properties": { "id": { "type": "string" } }, "required": ["id"] }
|
|
141
|
+
}
|
|
142
|
+
],
|
|
143
|
+
"webhooks": {
|
|
144
|
+
"signature_header": "x-gladia-key",
|
|
145
|
+
"events": [
|
|
146
|
+
{ "name": "transcription.created", "description": "A Gladia pre-recorded transcription was created." },
|
|
147
|
+
{ "name": "transcription.success", "description": "A Gladia pre-recorded transcription completed successfully." },
|
|
148
|
+
{ "name": "transcription.error", "description": "A Gladia pre-recorded transcription failed." }
|
|
149
|
+
],
|
|
150
|
+
"registration": {
|
|
151
|
+
"method": "POST",
|
|
152
|
+
"path": "/",
|
|
153
|
+
"url_field": "url",
|
|
154
|
+
"manual_setup": "Gladia callbacks are configured per transcription request with callback=true and callback_config.url. This integration does not auto-register a global webhook."
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"health_check": { "tool": "list_transcriptions", "input": { "limit": 1 } }
|
|
158
|
+
}
|
package/src/apps/gmail.json
CHANGED
|
@@ -462,7 +462,7 @@
|
|
|
462
462
|
},
|
|
463
463
|
{
|
|
464
464
|
"name": "list_threads",
|
|
465
|
-
"description": "List email thread IDs with optional search. Returns thread IDs and snippets
|
|
465
|
+
"description": "List email thread IDs with optional search. Returns thread IDs and snippets. Use gmail_get_thread first to inspect a compact latest-message summary, then fetch a specific message with gmail_get_message only when body text is needed.",
|
|
466
466
|
"method": "GET",
|
|
467
467
|
"path": "/users/me/threads",
|
|
468
468
|
"input_schema": {
|
|
@@ -509,7 +509,7 @@
|
|
|
509
509
|
},
|
|
510
510
|
{
|
|
511
511
|
"name": "get_thread",
|
|
512
|
-
"description": "Get
|
|
512
|
+
"description": "Get a compact email thread index. Output includes thread id, history id, messageCount, messageIds, and messages with compact per-message metadata/snippet only. It intentionally does not return message bodies, HTML, or attachments. Use this first to choose which message IDs matter, then call gmail_get_message for the specific body/content needed.",
|
|
513
513
|
"method": "GET",
|
|
514
514
|
"path": "/users/me/threads/{threadId}",
|
|
515
515
|
"input_schema": {
|
|
@@ -583,9 +583,6 @@
|
|
|
583
583
|
"sizeEstimate": 2048
|
|
584
584
|
}
|
|
585
585
|
]
|
|
586
|
-
},
|
|
587
|
-
"response_transform": {
|
|
588
|
-
"type": "email_thread"
|
|
589
586
|
}
|
|
590
587
|
},
|
|
591
588
|
{
|