v2

latestOpenAPI 3.0.0Proprietary2026-08-07936826.0 KB
Toolkits

Sync a custom toolkit

Experimental: custom toolkits are in pilot and this contract may change. Re-fetches tool definitions from the remote MCP server for the custom toolkit with the provided slug. Call it when automatic sync fails or the remote tool definitions change.

post/api/v3/custom/toolkits/sync

Request body

slugstring required

Toolkit slug to sync

connected_account_idstring connectedAccountId

The unique identifier for the connected account

Example request

{
  "slug": "CUSTOM_MY_TOOLKIT",
  "connected_account_id": "ca_1a2b3c4d5e6f"
}

Response

Successfully synced toolkit

slugstring required

Synced toolkit slug

versionstring required

Version of the toolkit created after sync

synced_countnumber required

Number of tools synced for toolkit

Example response

{
  "slug": "CUSTOM_MY_TOOLKIT",
  "version": "00000000_00",
  "synced_count": 1
}