POST
/
toolkits
curl --request POST \
  --url http://localhost/api/v1/toolkits \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "mcp": {
    "source": "files",
    "server_url": "<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

Response

200
application/json

Successful Response

The response is of type object.