Tool details
| Field | Value |
|---|---|
| Name | uninstall_agent |
| 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."
},
"agent_id": {
"type": "string",
"minLength": 1,
"description": "Provide the agent id."
}
},
"required": [
"agent_id"
],
"additionalProperties": false,
"description": "Input schema for the uninstall_agent tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
output-schema.json
{
"type": "object",
"properties": {
"success": {
"type": "boolean",
"const": true,
"description": "Whether the operation completed successfully."
},
"id": {
"type": "string",
"description": "Unique identifier for the record."
}
},
"required": [
"success",
"id"
],
"additionalProperties": false,
"description": "Structured delete agent output schema for MCP tools.",
"$schema": "http://json-schema.org/draft-07/schema#"
}