Skip to content

Commit 8075e62

Browse files
Bill LeoutsakosBill Leoutsakos
authored andcommitted
Merge origin/staging into feat/unified-server-selector-execution
# Conflicts: # scripts/check-tool-registry-boundary.baseline.json
2 parents a135092 + b01b41f commit 8075e62

169 files changed

Lines changed: 28879 additions & 1332 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

apps/docs/content/docs/en/integrations/box.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ Upload a file to a Box folder
5252
| --------- | ---- | -------- | ----------- |
5353
| `parentFolderId` | string | Yes | The ID of the folder to upload the file to \(use "0" for root\) |
5454
| `file` | file | No | The file to upload \(UserFile object\) |
55-
| `fileContent` | string | No | Legacy: base64 encoded file content |
5655
| `fileName` | string | No | Optional filename override |
5756

5857
#### Output

apps/docs/content/docs/en/integrations/daytona.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,6 @@ Upload a file to a Daytona sandbox
216216
| `sandboxId` | string | Yes | ID of the sandbox to upload the file to |
217217
| `destinationPath` | string | Yes | Destination path in the sandbox \(a trailing slash uploads into that directory using the file name\) |
218218
| `file` | file | No | The file to upload |
219-
| `fileContent` | string | No | Legacy: base64 encoded file content |
220219
| `fileName` | string | No | Optional file name override |
221220

222221
#### Output

apps/docs/content/docs/en/integrations/dropbox.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ Upload a file to Dropbox
4444
| --------- | ---- | -------- | ----------- |
4545
| `path` | string | Yes | The path in Dropbox where the file should be saved \(e.g., /folder/document.pdf\) |
4646
| `file` | file | No | The file to upload \(UserFile object\) |
47-
| `fileContent` | string | No | Legacy: base64 encoded file content |
4847
| `fileName` | string | No | Optional filename \(used if path is a folder\) |
4948
| `mode` | string | No | Write mode: add \(default\) or overwrite |
5049
| `autorename` | boolean | No | If true, rename the file if there is a conflict |

apps/docs/content/docs/en/integrations/firecrawl.mdx

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ Extract structured content from web pages with comprehensive metadata support. C
5252
| --------- | ---- | -------- | ----------- |
5353
| `url` | string | Yes | The URL to scrape content from \(e.g., "https://example.com/page"\) |
5454
| `formats` | json | No | Output formats supplied by existing Firecrawl block configurations |
55-
| `scrapeOptions` | json | No | Options for content scraping |
5655
| `apiKey` | string | Yes | Firecrawl API key |
5756

5857
#### Output
@@ -90,7 +89,6 @@ Scrape multiple URLs in a single batch job and retrieve structured content from
9089
| `onlyMainContent` | boolean | No | Extract only main content from pages |
9190
| `maxConcurrency` | number | No | Maximum number of concurrent scrapes |
9291
| `ignoreInvalidURLs` | boolean | No | Skip invalid URLs instead of failing the batch \(default: true\) |
93-
| `scrapeOptions` | json | No | Advanced scraping configuration options |
9492
| `zeroDataRetention` | boolean | No | Enable zero data retention |
9593
| `apiKey` | string | Yes | Firecrawl API key |
9694

@@ -159,7 +157,6 @@ Search for information on the web using Firecrawl
159157
| Parameter | Type | Required | Description |
160158
| --------- | ---- | -------- | ----------- |
161159
| `query` | string | Yes | The search query to use |
162-
| `scrapeOptions` | json | No | Advanced scrape options supplied by existing configurations |
163160
| `apiKey` | string | Yes | Firecrawl API key |
164161

165162
#### Output
@@ -170,11 +167,11 @@ Search for information on the web using Firecrawl
170167
|`title` | string | Search result title from search engine |
171168
|`description` | string | Search result description/snippet from search engine |
172169
|`url` | string | URL of the search result |
173-
|`markdown` | string | Page content in markdown \(when scrapeOptions.formats includes "markdown"\) |
174-
|`html` | string | Processed HTML content \(when scrapeOptions.formats includes "html"\) |
175-
|`rawHtml` | string | Unprocessed raw HTML \(when scrapeOptions.formats includes "rawHtml"\) |
176-
|`links` | array | Links found on the page \(when scrapeOptions.formats includes "links"\) |
177-
|`screenshot` | string | Screenshot URL \(expires after 24 hours, when scrapeOptions.formats includes "screenshot"\) |
170+
|`markdown` | string | Page content in markdown; returned only when scraping was requested via the hidden scrapeOptions input |
171+
|`html` | string | Processed HTML content; returned only when "html" is among the scrape formats requested via the hidden scrapeOptions input |
172+
|`rawHtml` | string | Unprocessed raw HTML; returned only when "rawHtml" is among the scrape formats requested via the hidden scrapeOptions input |
173+
|`links` | array | Links found on the page; returned only when "links" is among the scrape formats requested via the hidden scrapeOptions input |
174+
|`screenshot` | string | Screenshot URL \(expires after 24 hours\); returned only when "screenshot" is among the scrape formats requested via the hidden scrapeOptions input |
178175
|`metadata` | object | Metadata about the search result page |
179176
|`title` | string | Page title |
180177
|`description` | string | Page meta description |
@@ -195,7 +192,6 @@ Crawl entire websites and extract structured content from all accessible pages
195192
| `maxDepth` | number | No | Maximum depth to crawl from the starting URL \(e.g., 1, 2, 3\). Controls how many levels deep to follow links |
196193
| `formats` | json | No | Output formats for scraped content \(e.g., \["markdown"\], \["markdown", "html"\], \["markdown", "links"\]\) |
197194
| `prompt` | string | No | Natural-language crawl guidance supplied by existing configurations |
198-
| `scrapeOptions` | json | No | Advanced scrape options supplied by existing configurations |
199195
| `excludePaths` | json | No | URL paths to exclude from crawling \(e.g., \["/blog/*", "/admin/*", "/*.pdf"\]\) |
200196
| `includePaths` | json | No | URL paths to include in crawling \(e.g., \["/docs/*", "/api/*"\]\). Only these paths will be crawled |
201197
| `onlyMainContent` | boolean | No | Extract only main content from pages |
@@ -287,7 +283,6 @@ Get a complete list of URLs from any website quickly and reliably. Useful for di
287283
| `ignoreQueryParameters` | boolean | No | Exclude URLs containing query strings \(default: true\) |
288284
| `limit` | number | No | Maximum number of links to return \(e.g., 100, 1000, 5000\). Max: 100,000, default: 5,000 |
289285
| `timeout` | number | No | Request timeout in milliseconds |
290-
| `location` | json | No | Geographic context for proxying \(country, languages\) |
291286
| `apiKey` | string | Yes | Firecrawl API key |
292287

293288
#### Output
@@ -313,7 +308,6 @@ Extract structured data from entire webpages using natural language prompts and
313308
| `includeSubdomains` | boolean | No | Extend scanning to subdomains \(default: true\) |
314309
| `showSources` | boolean | No | Return data sources in the response \(default: false\) |
315310
| `ignoreInvalidURLs` | boolean | No | Skip invalid URLs in the array \(default: true\) |
316-
| `scrapeOptions` | json | No | Advanced scraping configuration options |
317311
| `apiKey` | string | Yes | Firecrawl API key |
318312

319313
#### Output

apps/docs/content/docs/en/integrations/github.mdx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,8 @@ Create comments on GitHub PRs
120120
| `body` | string | Yes | Comment content |
121121
| `pullNumber` | number | Yes | Pull request number |
122122
| `path` | string | No | File path for review comment |
123-
| `position` | number | No | Line number for review comment |
124123
| `commentType` | string | No | Type of comment \(pr_comment or file_comment\) |
125124
| `line` | number | No | Line number for review comment |
126-
| `side` | string | No | Side of the diff \(LEFT or RIGHT\) |
127-
| `commitId` | string | No | The SHA of the commit to comment on |
128125
| `apiKey` | string | Yes | GitHub API token |
129126

130127
#### Output

apps/docs/content/docs/en/integrations/google_calendar.mdx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ List events from Google Calendar. Returns API-aligned fields only.
8989
| `maxResults` | number | No | Maximum number of events to return \(max 2500\) |
9090
| `pageToken` | string | No | Token for retrieving the next page of results |
9191
| `orderBy` | string | No | Order of events: startTime \(chronological, the default\) or updated \(last-modified\). startTime is always valid here because singleEvents is set. |
92-
| `showDeleted` | boolean | No | Include deleted events |
9392

9493
#### Output
9594

@@ -227,7 +226,6 @@ Get instances of a recurring event from Google Calendar. Returns API-aligned fie
227226
| `timeMax` | string | No | Upper bound for instances \(RFC3339 timestamp, e.g., 2025-06-04T00:00:00Z\) |
228227
| `maxResults` | number | No | Maximum number of instances to return \(default 250, max 2500\) |
229228
| `pageToken` | string | No | Token for retrieving subsequent pages of results |
230-
| `showDeleted` | boolean | No | Include deleted instances |
231229

232230
#### Output
233231

@@ -248,8 +246,6 @@ List all calendars in the user's calendar list. Returns API-aligned fields only.
248246
| `minAccessRole` | string | No | Minimum access role for returned calendars: freeBusyReader, reader, writer, or owner |
249247
| `maxResults` | number | No | Maximum number of calendars to return \(default 100, max 250\) |
250248
| `pageToken` | string | No | Token for retrieving subsequent pages of results |
251-
| `showDeleted` | boolean | No | Include deleted calendars |
252-
| `showHidden` | boolean | No | Include hidden calendars |
253249

254250
#### Output
255251

apps/docs/content/docs/en/integrations/google_drive.mdx

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ List files and folders in Google Drive with complete metadata
4646
| `folderId` | string | No | The ID of the folder to list files from \(internal use\) |
4747
| `query` | string | No | Search term to filter files by name \(e.g. "budget" finds files with "budget" in the name\). Do NOT use Google Drive query syntax here - just provide a plain search term. |
4848
| `pageSize` | number | No | The maximum number of files to return \(default: 100\) |
49-
| `pageToken` | string | No | The page token to use for pagination |
5049

5150
#### Output
5251

@@ -105,7 +104,7 @@ List files and folders in Google Drive with complete metadata
105104
|`isAppAuthorized` | boolean | Whether created by requesting app |
106105
|`contentRestrictions` | json | Content restrictions |
107106
|`linkShareMetadata` | json | Link share metadata |
108-
| `nextPageToken` | string | Token for fetching the next page of results |
107+
| `nextPageToken` | string | Page token for the next page of files; absent from the response when the end of the files list has been reached |
109108

110109
### Get Google Drive File
111110

@@ -485,7 +484,6 @@ Search for files in Google Drive using advanced query syntax (e.g., fullText con
485484
| --------- | ---- | -------- | ----------- |
486485
| `query` | string | Yes | Google Drive query string using advanced search syntax \(e.g., "fullText contains 'budget'", "mimeType = 'application/pdf'", "modifiedTime > '2024-01-01'"\) |
487486
| `pageSize` | number | No | Maximum number of files to return \(default: 100\) |
488-
| `pageToken` | string | No | Token for fetching the next page of results |
489487

490488
#### Output
491489

@@ -518,7 +516,7 @@ Search for files in Google Drive using advanced query syntax (e.g., fullText con
518516
|`driveId` | string | Shared drive ID |
519517
|`capabilities` | json | User capabilities on file |
520518
|`version` | string | Version number |
521-
| `nextPageToken` | string | Token for fetching the next page of results |
519+
| `nextPageToken` | string | Page token for the next page of files; absent from the response when the end of the files list has been reached |
522520

523521
### Update Google Drive File
524522

@@ -673,7 +671,6 @@ List all permissions (who has access) for a file in Google Drive
673671
| Parameter | Type | Required | Description |
674672
| --------- | ---- | -------- | ----------- |
675673
| `fileId` | string | Yes | The ID of the file to list permissions for |
676-
| `pageToken` | string | No | The page token to use for pagination |
677674

678675
#### Output
679676

@@ -692,7 +689,7 @@ List all permissions (who has access) for a file in Google Drive
692689
|`allowFileDiscovery` | boolean | Whether file is discoverable by grantee |
693690
|`pendingOwner` | boolean | Whether ownership transfer is pending |
694691
|`permissionDetails` | json | Details about inherited permissions |
695-
| `nextPageToken` | string | Token for fetching the next page of permissions |
692+
| `nextPageToken` | string | Page token for the next page of permissions; absent from the response when the end of the permissions list has been reached |
696693

697694
### Export Google Drive File
698695

@@ -723,7 +720,6 @@ List the revision history of a file in Google Drive
723720
| --------- | ---- | -------- | ----------- |
724721
| `fileId` | string | Yes | The ID of the file to list revisions for |
725722
| `pageSize` | number | No | Maximum number of revisions to return \(1-1000, default 200\) |
726-
| `pageToken` | string | No | The page token to use for pagination |
727723

728724
#### Output
729725

@@ -741,7 +737,7 @@ List the revision history of a file in Google Drive
741737
|`md5Checksum` | string | MD5 checksum for binary revisions |
742738
|`size` | string | Size of the revision in bytes |
743739
|`exportLinks` | json | Export format links for the revision |
744-
| `nextPageToken` | string | Token for fetching the next page of revisions |
740+
| `nextPageToken` | string | Page token for the next page of revisions; absent from the response when the end of the revisions list has been reached |
745741

746742
### Get Google Drive Revision
747743

@@ -783,7 +779,6 @@ List comments on a file in Google Drive
783779
| `includeDeleted` | boolean | No | Whether to include deleted comments \(their content is stripped\) |
784780
| `pageSize` | number | No | Maximum number of comments to return \(1-100, default 20\) |
785781
| `startModifiedTime` | string | No | Only return comments modified after this RFC 3339 timestamp |
786-
| `pageToken` | string | No | The page token to use for pagination |
787782

788783
#### Output
789784

@@ -801,7 +796,7 @@ List comments on a file in Google Drive
801796
|`anchor` | string | Region of the document the comment refers to |
802797
|`quotedFileContent` | json | The file content the comment quotes |
803798
|`replies` | json | Threaded replies to the comment |
804-
| `nextPageToken` | string | Token for fetching the next page of comments |
799+
| `nextPageToken` | string | Page token for the next page of comments; absent from the response when the end of the comments list has been reached |
805800

806801
### Create Google Drive Comment
807802

apps/docs/content/docs/en/integrations/google_sheets.mdx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ Write data to a specific sheet in a Google Sheets spreadsheet
7575
| `cellRange` | string | No | The cell range to write to \(e.g. "A1:D10", "A1"\). Defaults to "A1" if not specified. |
7676
| `values` | array | Yes | The data to write as a 2D array \(e.g. \[\["Name", "Age"\], \["Alice", 30\], \["Bob", 25\]\]\) or array of objects. |
7777
| `valueInputOption` | string | No | The format of the data to write |
78-
| `includeValuesInResponse` | boolean | No | Whether to include the written values in the response |
7978

8079
#### Output
8180

@@ -102,7 +101,6 @@ Update data in a specific sheet in a Google Sheets spreadsheet
102101
| `cellRange` | string | No | The cell range to update \(e.g. "A1:D10", "A1"\). Defaults to "A1" if not specified. |
103102
| `values` | array | Yes | The data to update as a 2D array \(e.g. \[\["Name", "Age"\], \["Alice", 30\]\]\) or array of objects. |
104103
| `valueInputOption` | string | No | The format of the data to update |
105-
| `includeValuesInResponse` | boolean | No | Whether to include the updated values in the response |
106104

107105
#### Output
108106

@@ -129,7 +127,6 @@ Append data to the end of a specific sheet in a Google Sheets spreadsheet
129127
| `values` | array | Yes | The data to append as a 2D array \(e.g. \[\["Alice", 30\], \["Bob", 25\]\]\) or array of objects. |
130128
| `valueInputOption` | string | No | The format of the data to append |
131129
| `insertDataOption` | string | No | How to insert the data \(OVERWRITE or INSERT_ROWS\) |
132-
| `includeValuesInResponse` | boolean | No | Whether to include the appended values in the response |
133130

134131
#### Output
135132

0 commit comments

Comments
 (0)