update_agent
ActiveTool of Chronary
declared in 1.0.0
Update an agent's name, description, metadata, or status (active/paused). Requires an org-level API key — agent-scoped keys cannot mutate agents.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"agent_id"
],
"properties": {
"name": {
"type": "string",
"maxLength": 255,
"minLength": 1,
"description": "New display name"
},
"status": {
"enum": [
"active",
"paused"
],
"type": "string",
"description": "Operational status"
},
"agent_id": {
"type": "string",
"description": "Agent ID to update"
},
"metadata": {
"type": "object",
"description": "Arbitrary metadata (max 16KB)",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "New description (null to clear)"
}
}
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
Chronary
https://github.com/Chronary/chronary-mcp
2/7 registries