Skip to content

Commit 02ecefe

Browse files
committed
Merge branch 'staging' into dev
2 parents 7a855eb + 07e7670 commit 02ecefe

177 files changed

Lines changed: 5199 additions & 1488 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/components/ui/video.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export function Video({
5050
height={height}
5151
className={cn(
5252
className,
53-
enableLightbox && 'cursor-pointer transition-opacity hover:opacity-95'
53+
enableLightbox && 'cursor-pointer transition-opacity hover:opacity-[0.97]'
5454
)}
5555
src={getAssetUrl(src)}
5656
onClick={handleVideoClick}

apps/docs/content/docs/en/tools/ashby.mdx

Lines changed: 117 additions & 63 deletions
Large diffs are not rendered by default.

apps/docs/content/docs/en/tools/confluence.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ Update a Confluence page using the Confluence API.
8181
| `pageId` | string | Yes | Confluence page ID to update \(numeric ID from page URL or API\) |
8282
| `title` | string | No | New title for the page |
8383
| `content` | string | No | New content for the page in Confluence storage format |
84-
| `version` | number | No | Version number of the page \(required for preventing conflicts\) |
8584
| `cloudId` | string | No | Confluence Cloud ID for the instance. If not provided, it will be fetched using the domain. |
8685

8786
#### Output
@@ -1091,6 +1090,8 @@ Delete a Confluence space.
10911090
| `ts` | string | ISO 8601 timestamp of the operation |
10921091
| `spaceId` | string | Deleted space ID |
10931092
| `deleted` | boolean | Deletion status |
1093+
| `longTaskId` | string | ID of the long-running deletion task; poll Confluence long-task API to track completion |
1094+
| `longTaskStatusLink` | string | Relative link to the long-task status endpoint |
10941095

10951096
### `confluence_list_spaces`
10961097

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

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,4 +234,50 @@ Autonomous web data extraction agent. Searches and gathers information based on
234234
| `expiresAt` | string | Timestamp when the results expire \(24 hours\) |
235235
| `sources` | object | Array of source URLs used by the agent |
236236

237+
### `firecrawl_parse`
238+
239+
Parse uploaded documents (PDF, DOCX, HTML, etc.) into clean markdown using Firecrawl. Supports .html, .htm, .pdf, .docx, .doc, .odt, .rtf, .xlsx, .xls.
240+
241+
#### Input
242+
243+
| Parameter | Type | Required | Description |
244+
| --------- | ---- | -------- | ----------- |
245+
| `file` | file | Yes | Document file to be parsed |
246+
| `formats` | array | No | Output formats to return \(e.g., \["markdown"\]\). Defaults to markdown. |
247+
| `onlyMainContent` | boolean | No | Exclude headers, navs, footers. Defaults to true. |
248+
| `includeTags` | array | No | HTML tags to include |
249+
| `excludeTags` | array | No | HTML tags to exclude |
250+
| `timeout` | number | No | Timeout in milliseconds \(max 300000\). Defaults to 30000. |
251+
| `parsers` | array | No | Parser configuration \(e.g., \[\{ "type": "pdf" \}\]\) |
252+
| `removeBase64Images` | boolean | No | Remove base64 images, keep alt text. Defaults to true. |
253+
| `blockAds` | boolean | No | Block ads and popups. Defaults to true. |
254+
| `proxy` | string | No | Proxy mode: "basic" or "auto" |
255+
| `zeroDataRetention` | boolean | No | Enable zero data retention. Defaults to false. |
256+
| `apiKey` | string | Yes | Firecrawl API key |
257+
| `pricing` | custom | No | No description |
258+
| `metadata` | string | No | No description |
259+
| `rateLimit` | string | No | No description |
260+
261+
#### Output
262+
263+
| Parameter | Type | Description |
264+
| --------- | ---- | ----------- |
265+
| `markdown` | string | Parsed document content in markdown format |
266+
| `summary` | string | Generated summary of the document |
267+
| `html` | string | Processed HTML content |
268+
| `rawHtml` | string | Unprocessed raw HTML content |
269+
| `screenshot` | string | Screenshot URL or base64 \(when requested\) |
270+
| `links` | array | URLs discovered in the document |
271+
| `metadata` | object | Document metadata |
272+
|`title` | string | Document title |
273+
|`description` | string | Document description |
274+
|`language` | string | Document language code |
275+
|`sourceURL` | string | Source URL |
276+
|`url` | string | Final URL |
277+
|`keywords` | string | Document keywords |
278+
|`statusCode` | number | HTTP status code |
279+
|`contentType` | string | Document content type |
280+
|`error` | string | Error message if parse failed |
281+
| `warning` | string | Warning message from the parse operation |
282+
237283

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

Lines changed: 169 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,78 @@ Get metadata for a specific file in Google Drive by its ID
146146
|`md5Checksum` | string | MD5 hash |
147147
|`version` | string | Version number |
148148

149+
### `google_drive_get_content`
150+
151+
Get content from a file in Google Drive with complete metadata (exports Google Workspace files automatically)
152+
153+
#### Input
154+
155+
| Parameter | Type | Required | Description |
156+
| --------- | ---- | -------- | ----------- |
157+
| `fileId` | string | Yes | The ID of the file to get content from |
158+
| `mimeType` | string | No | The MIME type to export Google Workspace files to \(optional\) |
159+
| `includeRevisions` | boolean | No | Whether to include revision history in the metadata \(default: true, returns first 100 revisions\) |
160+
161+
#### Output
162+
163+
| Parameter | Type | Description |
164+
| --------- | ---- | ----------- |
165+
| `content` | string | File content as text \(Google Workspace files are exported\) |
166+
| `metadata` | object | Complete file metadata from Google Drive |
167+
|`id` | string | Google Drive file ID |
168+
|`kind` | string | Resource type identifier |
169+
|`name` | string | File name |
170+
|`mimeType` | string | MIME type |
171+
|`description` | string | File description |
172+
|`originalFilename` | string | Original uploaded filename |
173+
|`fullFileExtension` | string | Full file extension |
174+
|`fileExtension` | string | File extension |
175+
|`owners` | json | List of file owners |
176+
|`permissions` | json | File permissions |
177+
|`permissionIds` | json | Permission IDs |
178+
|`shared` | boolean | Whether file is shared |
179+
|`ownedByMe` | boolean | Whether owned by current user |
180+
|`writersCanShare` | boolean | Whether writers can share |
181+
|`viewersCanCopyContent` | boolean | Whether viewers can copy |
182+
|`copyRequiresWriterPermission` | boolean | Whether copy requires writer permission |
183+
|`sharingUser` | json | User who shared the file |
184+
|`starred` | boolean | Whether file is starred |
185+
|`trashed` | boolean | Whether file is in trash |
186+
|`explicitlyTrashed` | boolean | Whether explicitly trashed |
187+
|`appProperties` | json | App-specific properties |
188+
|`createdTime` | string | File creation time |
189+
|`modifiedTime` | string | Last modification time |
190+
|`modifiedByMeTime` | string | When modified by current user |
191+
|`viewedByMeTime` | string | When last viewed by current user |
192+
|`sharedWithMeTime` | string | When shared with current user |
193+
|`lastModifyingUser` | json | User who last modified the file |
194+
|`viewedByMe` | boolean | Whether viewed by current user |
195+
|`modifiedByMe` | boolean | Whether modified by current user |
196+
|`webViewLink` | string | URL to view in browser |
197+
|`webContentLink` | string | Direct download URL |
198+
|`iconLink` | string | URL to file icon |
199+
|`thumbnailLink` | string | URL to thumbnail |
200+
|`exportLinks` | json | Export format links |
201+
|`size` | string | File size in bytes |
202+
|`quotaBytesUsed` | string | Storage quota used |
203+
|`md5Checksum` | string | MD5 hash |
204+
|`sha1Checksum` | string | SHA-1 hash |
205+
|`sha256Checksum` | string | SHA-256 hash |
206+
|`parents` | json | Parent folder IDs |
207+
|`spaces` | json | Spaces containing file |
208+
|`driveId` | string | Shared drive ID |
209+
|`capabilities` | json | User capabilities on file |
210+
|`version` | string | Version number |
211+
|`headRevisionId` | string | Head revision ID |
212+
|`hasThumbnail` | boolean | Whether has thumbnail |
213+
|`thumbnailVersion` | string | Thumbnail version |
214+
|`imageMediaMetadata` | json | Image-specific metadata |
215+
|`videoMediaMetadata` | json | Video-specific metadata |
216+
|`isAppAuthorized` | boolean | Whether created by requesting app |
217+
|`contentRestrictions` | json | Content restrictions |
218+
|`linkShareMetadata` | json | Link share metadata |
219+
|`revisions` | json | File revision history \(first 100 revisions only\) |
220+
149221
### `google_drive_create_folder`
150222

151223
Create a new folder in Google Drive with complete metadata returned
@@ -375,6 +447,79 @@ Create a copy of a file in Google Drive
375447
|`owners` | json | List of file owners |
376448
|`size` | string | File size in bytes |
377449

450+
### `google_drive_move`
451+
452+
Move a file or folder to a different folder in Google Drive
453+
454+
#### Input
455+
456+
| Parameter | Type | Required | Description |
457+
| --------- | ---- | -------- | ----------- |
458+
| `fileId` | string | Yes | The ID of the file or folder to move |
459+
| `destinationFolderId` | string | Yes | The ID of the destination folder |
460+
| `removeFromCurrent` | boolean | No | Whether to remove the file from its current parent folder \(default: true\). Set to false to add the file to the destination without removing it from the current location. |
461+
462+
#### Output
463+
464+
| Parameter | Type | Description |
465+
| --------- | ---- | ----------- |
466+
| `file` | json | The moved file metadata |
467+
|`id` | string | Google Drive file ID |
468+
|`kind` | string | Resource type identifier |
469+
|`name` | string | File name |
470+
|`mimeType` | string | MIME type |
471+
|`webViewLink` | string | URL to view in browser |
472+
|`parents` | json | Parent folder IDs |
473+
|`createdTime` | string | File creation time |
474+
|`modifiedTime` | string | Last modification time |
475+
|`owners` | json | List of file owners |
476+
|`size` | string | File size in bytes |
477+
478+
### `google_drive_search`
479+
480+
Search for files in Google Drive using advanced query syntax (e.g., fullText contains, mimeType, modifiedTime, etc.)
481+
482+
#### Input
483+
484+
| Parameter | Type | Required | Description |
485+
| --------- | ---- | -------- | ----------- |
486+
| `query` | string | Yes | Google Drive query string using advanced search syntax \(e.g., "fullText contains \'budget\'", "mimeType = \'application/pdf\'", "modifiedTime > \'2024-01-01\'"\) |
487+
| `pageSize` | number | No | Maximum number of files to return \(default: 100\) |
488+
| `pageToken` | string | No | Token for fetching the next page of results |
489+
490+
#### Output
491+
492+
| Parameter | Type | Description |
493+
| --------- | ---- | ----------- |
494+
| `files` | array | Array of file metadata objects matching the search query |
495+
|`id` | string | Google Drive file ID |
496+
|`kind` | string | Resource type identifier |
497+
|`name` | string | File name |
498+
|`mimeType` | string | MIME type |
499+
|`description` | string | File description |
500+
|`originalFilename` | string | Original uploaded filename |
501+
|`fullFileExtension` | string | Full file extension |
502+
|`fileExtension` | string | File extension |
503+
|`owners` | json | List of file owners |
504+
|`permissions` | json | File permissions |
505+
|`shared` | boolean | Whether file is shared |
506+
|`ownedByMe` | boolean | Whether owned by current user |
507+
|`starred` | boolean | Whether file is starred |
508+
|`trashed` | boolean | Whether file is in trash |
509+
|`createdTime` | string | File creation time |
510+
|`modifiedTime` | string | Last modification time |
511+
|`lastModifyingUser` | json | User who last modified the file |
512+
|`webViewLink` | string | URL to view in browser |
513+
|`webContentLink` | string | Direct download URL |
514+
|`iconLink` | string | URL to file icon |
515+
|`thumbnailLink` | string | URL to thumbnail |
516+
|`size` | string | File size in bytes |
517+
|`parents` | json | Parent folder IDs |
518+
|`driveId` | string | Shared drive ID |
519+
|`capabilities` | json | User capabilities on file |
520+
|`version` | string | Version number |
521+
| `nextPageToken` | string | Token for fetching the next page of results |
522+
378523
### `google_drive_update`
379524

380525
Update file metadata in Google Drive (rename, move, star, add description)
@@ -428,6 +573,29 @@ Move a file to the trash in Google Drive (can be restored later)
428573
|`trashedTime` | string | When file was trashed |
429574
|`webViewLink` | string | URL to view in browser |
430575

576+
### `google_drive_untrash`
577+
578+
Restore a file from the trash in Google Drive
579+
580+
#### Input
581+
582+
| Parameter | Type | Required | Description |
583+
| --------- | ---- | -------- | ----------- |
584+
| `fileId` | string | Yes | The ID of the file to restore from trash |
585+
586+
#### Output
587+
588+
| Parameter | Type | Description |
589+
| --------- | ---- | ----------- |
590+
| `file` | json | The restored file metadata |
591+
|`id` | string | Google Drive file ID |
592+
|`kind` | string | Resource type identifier |
593+
|`name` | string | File name |
594+
|`mimeType` | string | MIME type |
595+
|`trashed` | boolean | Whether file is in trash \(should be false\) |
596+
|`webViewLink` | string | URL to view in browser |
597+
|`parents` | json | Parent folder IDs |
598+
431599
### `google_drive_delete`
432600

433601
Permanently delete a file from Google Drive (bypasses trash)
@@ -505,6 +673,7 @@ List all permissions (who has access) for a file in Google Drive
505673
| Parameter | Type | Required | Description |
506674
| --------- | ---- | -------- | ----------- |
507675
| `fileId` | string | Yes | The ID of the file to list permissions for |
676+
| `pageToken` | string | No | The page token to use for pagination |
508677

509678
#### Output
510679

apps/docs/content/docs/en/tools/jira.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ Assign a Jira issue to a user
384384
| --------- | ---- | -------- | ----------- |
385385
| `domain` | string | Yes | Your Jira domain \(e.g., yourcompany.atlassian.net\) |
386386
| `issueKey` | string | Yes | Jira issue key to assign \(e.g., PROJ-123\) |
387-
| `accountId` | string | Yes | Account ID of the user to assign the issue to. Use "-1" for automatic assignment or null to unassign. |
387+
| `accountId` | string | Yes | Account ID of the user to assign the issue to. Use "-1" for automatic assignment, or leave empty / pass "null" to unassign. |
388388
| `cloudId` | string | No | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
389389

390390
#### Output
@@ -436,7 +436,7 @@ Search for Jira issues using JQL (Jira Query Language)
436436
| `jql` | string | Yes | JQL query string to search for issues \(e.g., "project = PROJ AND status = Open"\) |
437437
| `nextPageToken` | string | No | Cursor token for the next page of results. Omit for the first page. |
438438
| `maxResults` | number | No | Maximum number of results to return per page \(default: 50\) |
439-
| `fields` | array | No | Array of field names to return \(default: all navigable\). Use "*all" for every field. |
439+
| `fields` | array | No | Array of field names to return \(default: all fields\). |
440440
| `cloudId` | string | No | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
441441

442442
#### Output
@@ -506,7 +506,7 @@ Search for Jira issues using JQL (Jira Query Language)
506506
|`updated` | string | ISO 8601 timestamp when the issue was last updated |
507507
| `nextPageToken` | string | Cursor token for the next page. Null when no more results. |
508508
| `isLast` | boolean | Whether this is the last page of results |
509-
| `total` | number | Total number of matching issues \(may not always be available\) |
509+
| `total` | number | Always null. The Jira /search/jql endpoint does not return a total count; use isLast and nextPageToken for pagination. |
510510

511511
### `jira_add_comment`
512512

apps/docs/content/docs/en/tools/jira_service_management.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,7 @@ Add customers to a service desk in Jira Service Management
331331
| `domain` | string | Yes | Your Jira domain \(e.g., yourcompany.atlassian.net\) |
332332
| `cloudId` | string | No | Jira Cloud ID for the instance |
333333
| `serviceDeskId` | string | Yes | Service Desk ID \(e.g., "1", "2"\) |
334-
| `accountIds` | string | No | Comma-separated Atlassian account IDs to add as customers |
335-
| `emails` | string | No | Comma-separated email addresses to add as customers |
334+
| `accountIds` | string | Yes | Comma-separated Atlassian account IDs to add as customers |
336335

337336
#### Output
338337

apps/docs/content/docs/en/tools/knowledge.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ Search for similar content in a knowledge base using vector similarity
4747
| `properties` | string | No | No description |
4848
| `tagName` | string | No | No description |
4949
| `tagValue` | string | No | No description |
50+
| `rerankerEnabled` | boolean | No | Whether to apply Cohere reranking to vector search results |
51+
| `rerankerModel` | string | No | Cohere rerank model to use \(one of: rerank-v4.0-pro, rerank-v4.0-fast, rerank-v3.5\) |
5052
| `tagFilters` | string | No | No description |
5153

5254
#### Output

apps/docs/content/docs/en/tools/notion.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,8 +256,6 @@ Create a new database in Notion with custom properties
256256

257257
### `notion_add_database_row`
258258

259-
Add a new row to a Notion database with specified properties
260-
261259
#### Input
262260

263261
| Parameter | Type | Required | Description |

apps/docs/content/docs/en/tools/slack.mdx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,6 @@ Create and share Slack canvases in channels. Canvases are collaborative document
170170
| Parameter | Type | Description |
171171
| --------- | ---- | ----------- |
172172
| `canvas_id` | string | Unique canvas identifier |
173-
| `channel` | string | Channel where canvas was created |
174-
| `title` | string | Canvas title |
175173

176174
### `slack_message_reader`
177175

@@ -522,6 +520,7 @@ List all channels in a Slack workspace. Returns public and private channels the
522520
| `includePrivate` | boolean | No | Include private channels the bot is a member of \(default: true\) |
523521
| `excludeArchived` | boolean | No | Exclude archived channels \(default: true\) |
524522
| `limit` | number | No | Maximum number of channels to return \(default: 100, max: 200\) |
523+
| `cursor` | string | No | Pagination cursor from a previous response.next_cursor |
525524

526525
#### Output
527526

@@ -547,6 +546,7 @@ List all channels in a Slack workspace. Returns public and private channels the
547546
| `ids` | array | Array of channel IDs for easy access |
548547
| `names` | array | Array of channel names for easy access |
549548
| `count` | number | Total number of channels returned |
549+
| `nextCursor` | string | Cursor for the next page; null if no more pages |
550550

551551
### `slack_list_members`
552552

@@ -560,13 +560,15 @@ List all members (user IDs) in a Slack channel. Use with Get User Info to resolv
560560
| `botToken` | string | No | Bot token for Custom Bot |
561561
| `channel` | string | Yes | Channel ID to list members from |
562562
| `limit` | number | No | Maximum number of members to return \(default: 100, max: 200\) |
563+
| `cursor` | string | No | Pagination cursor from a previous response.next_cursor |
563564

564565
#### Output
565566

566567
| Parameter | Type | Description |
567568
| --------- | ---- | ----------- |
568569
| `members` | array | Array of user IDs who are members of the channel \(e.g., U1234567890\) |
569570
| `count` | number | Total number of members returned |
571+
| `nextCursor` | string | Cursor for the next page; null if no more pages |
570572

571573
### `slack_list_users`
572574

@@ -580,6 +582,7 @@ List all users in a Slack workspace. Returns user profiles with names and avatar
580582
| `botToken` | string | No | Bot token for Custom Bot |
581583
| `includeDeleted` | boolean | No | Include deactivated/deleted users \(default: false\) |
582584
| `limit` | number | No | Maximum number of users to return \(default: 100, max: 200\) |
585+
| `cursor` | string | No | Pagination cursor from a previous response.next_cursor |
583586

584587
#### Output
585588

@@ -602,6 +605,7 @@ List all users in a Slack workspace. Returns user profiles with names and avatar
602605
| `ids` | array | Array of user IDs for easy access |
603606
| `names` | array | Array of usernames for easy access |
604607
| `count` | number | Total number of users returned |
608+
| `nextCursor` | string | Cursor for the next page; null if no more pages |
605609

606610
### `slack_get_user`
607611

@@ -638,7 +642,6 @@ Get detailed information about a specific Slack user by their user ID.
638642
|`is_restricted` | boolean | Whether the user is a guest \(restricted\) |
639643
|`is_ultra_restricted` | boolean | Whether the user is a single-channel guest |
640644
|`is_app_user` | boolean | Whether user is an app user |
641-
|`is_stranger` | boolean | Whether user is from different workspace |
642645
|`deleted` | boolean | Whether the user is deactivated |
643646
|`color` | string | User color for display |
644647
|`timezone` | string | Timezone identifier \(e.g., America/Los_Angeles\) |

0 commit comments

Comments
 (0)