devops_scale_service
verifiedv0.1Scale a service to N replicas. Simulated demo; registered by the /devops page.
Updated 7/11/2026 · Created 7/11/2026
Input Schema
{
"type": "object",
"required": [
"service",
"replicas"
],
"properties": {
"service": {
"enum": [
"web",
"api",
"worker"
],
"type": "string",
"description": "Service to scale"
},
"replicas": {
"type": "number",
"maximum": 10,
"minimum": 1,
"description": "Number of replicas (1-10)"
}
}
}Full Contract
{
"name": "devops_scale_service",
"description": "Scale a service to N replicas. Simulated demo; registered by the /devops page.",
"inputSchema": {
"type": "object",
"required": [
"service",
"replicas"
],
"properties": {
"service": {
"enum": [
"web",
"api",
"worker"
],
"type": "string",
"description": "Service to scale"
},
"replicas": {
"type": "number",
"maximum": 10,
"minimum": 1,
"description": "Number of replicas (1-10)"
}
}
}
}GET /api/tool/agentk.stacktr.ee/devops_scale_service