@apteva/integrations 0.15.9 → 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/apify.json +168 -0
- package/src/apps/aws-ses.json +1 -1
- package/src/apps/bookvault.json +309 -0
- package/src/apps/braintree.json +53 -0
- package/src/apps/brightdata.json +22 -1
- package/src/apps/browse-ai.json +243 -5
- package/src/apps/browserbase.json +41 -11
- package/src/apps/browserless.json +101 -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/digitalocean.json +53 -0
- package/src/apps/elevenlabs.json +292 -0
- package/src/apps/firecrawl.json +111 -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/ingram-coresource.json +119 -0
- 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/lulu-print.json +266 -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/publishdrive.json +132 -0
- 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/streetlib.json +60 -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/firecrawl.json
CHANGED
|
@@ -447,6 +447,117 @@
|
|
|
447
447
|
"required": ["id"]
|
|
448
448
|
}
|
|
449
449
|
},
|
|
450
|
+
{
|
|
451
|
+
"name": "agent",
|
|
452
|
+
"description": "Run Firecrawl's autonomous web data gathering agent. Use when the agent should search, navigate, and extract structured data without you knowing the exact URLs upfront.",
|
|
453
|
+
"method": "POST",
|
|
454
|
+
"path": "/agent",
|
|
455
|
+
"timeout_ms": 305000,
|
|
456
|
+
"input_schema": {
|
|
457
|
+
"type": "object",
|
|
458
|
+
"properties": {
|
|
459
|
+
"prompt": {
|
|
460
|
+
"type": "string",
|
|
461
|
+
"description": "Natural-language task describing what data to gather."
|
|
462
|
+
},
|
|
463
|
+
"schema": {
|
|
464
|
+
"type": "object",
|
|
465
|
+
"description": "Optional JSON Schema for structured output."
|
|
466
|
+
},
|
|
467
|
+
"model": {
|
|
468
|
+
"type": "string",
|
|
469
|
+
"description": "Optional Firecrawl agent model tier, when supported by the account."
|
|
470
|
+
},
|
|
471
|
+
"maxPages": {
|
|
472
|
+
"type": "integer",
|
|
473
|
+
"description": "Optional page budget for the agent run."
|
|
474
|
+
},
|
|
475
|
+
"timeout": {
|
|
476
|
+
"type": "integer",
|
|
477
|
+
"description": "Optional timeout in milliseconds."
|
|
478
|
+
}
|
|
479
|
+
},
|
|
480
|
+
"required": ["prompt"]
|
|
481
|
+
}
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"name": "interact_with_scrape",
|
|
485
|
+
"description": "Continue interacting with the browser state from a previous scrape. Provide either a natural-language prompt or Playwright code, not both. Use the scrapeId/jobId from scrape response metadata.",
|
|
486
|
+
"method": "POST",
|
|
487
|
+
"path": "/scrape/{jobId}/interact",
|
|
488
|
+
"timeout_ms": 305000,
|
|
489
|
+
"input_schema": {
|
|
490
|
+
"type": "object",
|
|
491
|
+
"properties": {
|
|
492
|
+
"jobId": {
|
|
493
|
+
"type": "string",
|
|
494
|
+
"description": "The scrape job ID / scrapeId returned by firecrawl_scrape."
|
|
495
|
+
},
|
|
496
|
+
"prompt": {
|
|
497
|
+
"type": "string",
|
|
498
|
+
"description": "Natural-language instruction, e.g. click a filter, fill a form, or extract after interaction."
|
|
499
|
+
},
|
|
500
|
+
"code": {
|
|
501
|
+
"type": "string",
|
|
502
|
+
"description": "Playwright code to execute in the existing browser session."
|
|
503
|
+
},
|
|
504
|
+
"timeout": {
|
|
505
|
+
"type": "integer",
|
|
506
|
+
"description": "Optional timeout in milliseconds."
|
|
507
|
+
}
|
|
508
|
+
},
|
|
509
|
+
"required": ["jobId"]
|
|
510
|
+
}
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"name": "stop_scrape_interact",
|
|
514
|
+
"description": "Stop and release the interactive browser session associated with a scrape job.",
|
|
515
|
+
"method": "DELETE",
|
|
516
|
+
"path": "/scrape/{jobId}/interact",
|
|
517
|
+
"input_schema": {
|
|
518
|
+
"type": "object",
|
|
519
|
+
"properties": {
|
|
520
|
+
"jobId": {
|
|
521
|
+
"type": "string",
|
|
522
|
+
"description": "The scrape job ID / scrapeId."
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
"required": ["jobId"]
|
|
526
|
+
}
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"name": "create_interact_session",
|
|
530
|
+
"description": "Start a standalone Firecrawl Interact browser session that can be driven with code, without first calling scrape.",
|
|
531
|
+
"method": "POST",
|
|
532
|
+
"path": "/interact",
|
|
533
|
+
"input_schema": {
|
|
534
|
+
"type": "object",
|
|
535
|
+
"properties": {
|
|
536
|
+
"ttl": {
|
|
537
|
+
"type": "integer",
|
|
538
|
+
"description": "Session time-to-live in seconds."
|
|
539
|
+
},
|
|
540
|
+
"activityTtl": {
|
|
541
|
+
"type": "integer",
|
|
542
|
+
"description": "Idle timeout in seconds."
|
|
543
|
+
},
|
|
544
|
+
"streamWebView": {
|
|
545
|
+
"type": "boolean",
|
|
546
|
+
"description": "Whether to return a live web view URL."
|
|
547
|
+
}
|
|
548
|
+
}
|
|
549
|
+
}
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"name": "list_interact_sessions",
|
|
553
|
+
"description": "List standalone Firecrawl Interact browser sessions.",
|
|
554
|
+
"method": "GET",
|
|
555
|
+
"path": "/interact",
|
|
556
|
+
"input_schema": {
|
|
557
|
+
"type": "object",
|
|
558
|
+
"properties": {}
|
|
559
|
+
}
|
|
560
|
+
},
|
|
450
561
|
{
|
|
451
562
|
"name": "batch_scrape",
|
|
452
563
|
"description": "Scrape a fixed list of URLs in one job. Returns a job id — poll firecrawl_batch_scrape_status to retrieve results. Use this when you already have the list of URLs (vs crawl, which discovers them).",
|
|
@@ -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
|
{
|