Skip to main content
POST
/
v1
/
toolkits
Create A Toolkit
curl --request POST \
  --url https://{api_endpoint}/api/v1/toolkits \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "mcp": {
    "source": "files",
    "server_url": "<string>",
    "transport": "<string>",
    "command": "<string>",
    "args": [
      "<string>"
    ],
    "env": {},
    "tools": [
      "<string>"
    ],
    "connections": {}
  }
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

A specification for a toolkit which comprises of tools

name
string
required

Name of the toolkit

description
string
required

Optional description of the toolkit

mcp
MCPToolKitConfig · object

Optional MCP configuration. Required only if tools are imported from MCP.

Response

Successful Response

The response is of type Response Create A Toolkit V1 Toolkits Post · object.