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": {}
}
}'
{}
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": {}
}
}'
{}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
A specification for a toolkit which comprises of tools
Successful Response
The response is of type object
.