Skip to main content
POST
/
api
/
agents
/
tools
/
validate
cURL
curl --request POST \
  --url http://localhost:8080/api/agents/tools/validate \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-API-SECRET: <api-key>' \
  --data '
{
  "tool": {
    "name": "Check Schedule",
    "type": "check_availability_cal",
    "cal_api_key": "cal_live_xxxxxxxxxxxxxxxx",
    "event_type_id": 123456
  }
}
'
{
  "message": "Tool configuration is valid",
  "status": "success",
  "data": {
    "valid": true,
    "tool_type": "check_availability_cal",
    "tool_name": "Check Schedule"
  }
}

Authorizations

X-API-KEY
string
header
required

API Key for MCP server and external service authentication

X-API-SECRET
string
header
required

API Secret for MCP server and external service authentication

Body

application/json
tool
object

Response

OK

message
string
status
string
data
object