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": {}
}
}
'{}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": {}
}
}
'{}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
The response is of type Response Create A Toolkit V1 Toolkits Post · object.