Tool details
| Field | Value |
|---|---|
| Name | veryfront__list_agent_push_runtime_services |
| Group | Agents |
Playground
Input schema
input-schema.json
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"minLength": 1,
"description": "Project identifier or slug that scopes the tool call."
}
},
"additionalProperties": false,
"description": "Input schema for the list_agent_push_runtime_services tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
output-schema.json
{
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"service_id": {
"type": "string",
"format": "uuid",
"description": "The service id associated with this tool result."
},
"project_id": {
"type": "string",
"format": "uuid",
"description": "Project identifier associated with this result."
},
"service_name": {
"type": "string",
"minLength": 1,
"description": "The service name associated with this tool result."
},
"service_key": {
"type": "string",
"minLength": 1,
"description": "The service key associated with this tool result."
},
"agent_id": {
"type": [
"string",
"null"
],
"description": "The agent id associated with this tool result."
},
"availability": {
"type": "string",
"enum": [
"active",
"drained"
],
"description": "The availability associated with this tool result."
},
"connection_status": {
"type": "string",
"enum": [
"online",
"offline",
"disabled"
],
"description": "The connection status associated with this tool result."
},
"invoke_url": {
"type": "string",
"format": "uri",
"description": "The invoke url associated with this tool result."
},
"last_heartbeat_at": {
"type": [
"string",
"null"
],
"description": "The last heartbeat at associated with this tool result."
},
"updated_at": {
"type": "string",
"description": "Last update timestamp in ISO 8601 format."
}
},
"required": [
"service_id",
"project_id",
"service_name",
"service_key",
"agent_id",
"availability",
"connection_status",
"invoke_url",
"last_heartbeat_at",
"updated_at"
],
"additionalProperties": false,
"description": "One data item associated with this tool result."
},
"description": "Primary result records returned by the tool."
}
},
"required": [
"data"
],
"additionalProperties": false,
"description": "Structured result returned by the list_agent_push_runtime_services tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}