Hanzo AI

Visor

visor: 34 operations.

Also for this capability: API · CLI · MCP · SDKs

visor: 34 operations. Name one in "op" and pass that operation's own arguments in "input". describe returns an operation's input schema.

Toolvisor
Addresshttps://api.hanzo.ai/v1/mcp
Methodtools/call (JSON-RPC 2.0)
Arguments2, 1 required
OperationPOST /v1/visor/clusters · PUT /v1/visor/machines/{id}/agent · POST /v1/visor/fleet/jobs/{id}/cancel · POST /v1/visor/k8s/clusters · POST /v1/visor/clusters/{clusterId}/pools · DELETE /v1/visor/compute/bots/{id} · DELETE /v1/visor/k8s/clusters/{id} · DELETE /v1/visor/machines/{id} · DELETE /v1/visor/clusters/{clusterId}/pools/{poolId} · DELETE /v1/visor/clusters/{id} · GET /v1/visor/compute/bots/{id} · GET /v1/visor/k8s/clusters/{id} · GET /v1/visor/machines/{id} · GET /v1/visor/machines/{id}/agent · GET /v1/visor/compute/bots · GET /v1/visor/clusters · GET /v1/visor/fleet · GET /v1/visor/fleet/jobs · GET /v1/visor/fleet/samples · GET /v1/visor/fleet/workers · GET /v1/visor/gpus/alerts · GET /v1/visor/gpus · GET /v1/visor/k8s/clusters · GET /v1/visor/k8s/nodes · GET /v1/visor/machines/agents · GET /v1/visor/machines · POST /v1/visor/fleet/samples · POST /v1/visor/clusters/{clusterId}/pools/{poolId}/scale · DELETE /v1/visor/machines/{id}/agent
Productvisor

Arguments

FieldTypeRequiredDefaultValuesDescription
inputobjectarguments for the chosen op
opstringyes

tools/list declares a type, a description, which fields are required and an enumerated value set for each field and nothing further, and every column above is MCP's own. This tool takes an operation name and that operation's arguments, so what the document constrains is what goes inside input, field by field, on the operation you name — ask describe for that. A means MCP does not constrain the field.

Call it

A tools/call carries every argument in one flat object — nothing binds to a path or a query string. This call carries exactly the arguments the operation requires, so it is the smallest one that can run.

curl -X POST https://api.hanzo.ai/v1/mcp \
  -H "Authorization: Bearer $HANZO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
       "jsonrpc": "2.0",
       "id": 1,
       "method": "tools/call",
       "params": {
         "name": "visor",
         "arguments": {
           "op": "list_compute_regions"
         }
       }
     }'

Values are the operation's own defaults and enumerated values where it declares them, and a <placeholder> where neither source declares one. tools/list needs no credential; tools/call does — called without one MCP answers HTTP 200 with a JSON-RPC result whose isError is set and whose text says what was missing. How to get a key →

The operation behind it

visor dispatches to 34 operations. 29 of them MCP names exactly as the document ids them, and those are below; for the rest MCP has its own verb, which describe resolves.

OperationRouteProductSummary
attachClusterPOST /v1/visor/clustersvisorAttaches a BYO cluster to the caller's org — the kubeconfig is validated, KMS-sealed and…
bindMachineAgentPUT /v1/visor/machines/{id}/agentvisorBinds a cloud Agent to one of the caller org's machines: the machine is recorded as…
cancelFleetJobPOST /v1/visor/fleet/jobs/{id}/cancelvisorCancels a queued or running render in the caller's org.
createKubernetesClusterPOST /v1/visor/k8s/clustersvisorProvisions a DOKS cluster for the caller's org and answers 201.
createNodePoolPOST /v1/visor/clusters/{clusterId}/poolsvisorAdds a node pool to one of the caller org's clusters and answers 201 with the created…
deleteBotDELETE /v1/visor/compute/bots/{id}visorTears down both halves of a bot: it unbinds the agent (best-effort — a bot with no…
deleteKubernetesClusterDELETE /v1/visor/k8s/clusters/{id}visorDestroys a DOKS cluster by id and answers 204.
deleteMachineDELETE /v1/visor/machines/{id}visorTerminates one of the caller org's machines.
deleteNodePoolDELETE /v1/visor/clusters/{clusterId}/pools/{poolId}visorRemoves a node pool from one of the caller org's clusters.
detachClusterDELETE /v1/visor/clusters/{id}visorRemoves a BYO cluster from the caller org's fleet.
getBotGET /v1/visor/compute/bots/{id}visorReturns one of the caller org's bot machines with its agent binding.
getKubernetesClusterGET /v1/visor/k8s/clusters/{id}visorReturns one cluster's detail: node pools + worker nodes.
getMachineGET /v1/visor/machines/{id}visorReturns one of the caller org's machines by its org-scoped name.
getMachineAgentGET /v1/visor/machines/{id}/agentvisorReturns the agent binding of one of the caller org's machines, or 404 when the machine…
listBotsGET /v1/visor/compute/botsvisorReturns the caller org's bot machines — the kind=bot machines — each joined with the…
listClustersGET /v1/visor/clustersvisorReturns the caller org's clusters from both sources: the managed clusters projected from…
listFleetGET /v1/visor/fleetvisorReturns every compute unit the caller's org has, from every source, each carrying its…
listFleetJobsGET /v1/visor/fleet/jobsvisorReturns the caller org's gpu-jobs render queue, each row tagged with the GPU it targets…
listFleetSamplesGET /v1/visor/fleet/samplesvisorReturns the caller org's utilization series, oldest first.
listFleetWorkersGET /v1/visor/fleet/workersvisorReturns the caller org's BYO machines — the ones that dialed in via hanzo link — with…
listGpuAlertsGET /v1/visor/gpus/alertsvisorIs an HONEST empty surface: Visor exposes no GPU alert inventory, so this returns []…
listGpusGET /v1/visor/gpusvisorReturns one row per physical accelerator the caller's org has, derived from its real GPU…
listKubernetesClustersGET /v1/visor/k8s/clustersvisorLists the org's DOKS clusters (Visor, house account) folded with the org's BYO clusters —…
listKubernetesNodesGET /v1/visor/k8s/nodesvisorReturns every DOKS worker node in the org's clusters as a machine — the SAME set the…
listMachineAgentsGET /v1/visor/machines/agentsvisorReturns every agent↔machine binding in the caller's org — which machines are running…
listMachinesGET /v1/visor/machinesvisorReturns every machine the caller's org has — Visor's registry, the live DigitalOcean…
recordFleetSamplePOST /v1/visor/fleet/samplesvisorRecords a BYO worker's live GPU utilization into the SAME series the fleet board overlays.
scaleNodePoolPOST /v1/visor/clusters/{clusterId}/pools/{poolId}/scalevisorResizes a node pool to an absolute node count and returns the pool as Visor reports it…
unbindMachineAgentDELETE /v1/visor/machines/{id}/agentvisorDetaches the agent runtime from one of the caller org's machines.

The same capability over plain HTTP is in the visor API reference, on https://api.hanzo.ai.


All 121 tools · MCP · API reference

Generated from tools/list on https://api.hanzo.ai/v1/mcp — 121 tools captured 2026-08-16.

How is this guide?