Hanzo
Cloud MCPmachines

visor

visor: 29 operations.

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

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

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 the door'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 the door 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": "<op>"
         }
       }
     }'

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 the door 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 29 operations.

OperationRouteProductSummary
attachClusterPOST /v1/clustersclustersAttaches a BYO cluster to the caller's org — the kubeconfig is validated, KMS-sealed and…
bindMachineAgentPUT /v1/machines/{id}/agentmachinesBinds a cloud Agent to one of the caller org's machines: the machine is recorded as…
cancelFleetJobPOST /v1/fleet/jobs/{id}/cancelfleetCancels a queued or running render in the caller's org.
createKubernetesClusterPOST /v1/k8s/clustersk8sProvisions a DOKS cluster for the caller's org and answers 201.
createNodePoolPOST /v1/clusters/{clusterId}/poolsclustersAdds a node pool to one of the caller org's clusters and answers 201 with the created…
deleteBotDELETE /v1/compute/bots/{id}computeTears down both halves of a bot: it unbinds the agent (best-effort — a bot with no…
deleteKubernetesClusterDELETE /v1/k8s/clusters/{id}k8sDestroys a DOKS cluster by id and answers 204.
deleteMachineDELETE /v1/machines/{id}machinesTerminates one of the caller org's machines.
deleteNodePoolDELETE /v1/clusters/{clusterId}/pools/{poolId}clustersRemoves a node pool from one of the caller org's clusters.
detachClusterDELETE /v1/clusters/{id}clustersRemoves a BYO cluster from the caller org's fleet.
getBotGET /v1/compute/bots/{id}computeReturns one of the caller org's bot machines with its agent binding.
getKubernetesClusterGET /v1/k8s/clusters/{id}k8sReturns one cluster's detail: node pools + worker nodes.
getMachineGET /v1/machines/{id}machinesReturns one of the caller org's machines by its org-scoped name.
getMachineAgentGET /v1/machines/{id}/agentmachinesReturns the agent binding of one of the caller org's machines, or 404 when the machine…
listBotsGET /v1/compute/botscomputeReturns the caller org's bot machines — the kind=bot machines — each joined with the…
listClustersGET /v1/clustersclustersReturns the caller org's clusters from both sources: the managed clusters projected from…
listFleetGET /v1/fleetfleetReturns every compute unit the caller's org has, from every source, each carrying its…
listFleetJobsGET /v1/fleet/jobsfleetReturns the caller org's gpu-jobs render queue, each row tagged with the GPU it targets…
listFleetSamplesGET /v1/fleet/samplesfleetReturns the caller org's utilization series, oldest first.
listFleetWorkersGET /v1/fleet/workersfleetReturns the caller org's BYO machines — the ones that dialed in via hanzo link — with…
listGpuAlertsGET /v1/gpus/alertsgpusIs an HONEST empty surface: Visor exposes no GPU alert inventory, so this returns []…
listGpusGET /v1/gpusgpusReturns one row per physical accelerator the caller's org has, derived from its real GPU…
listKubernetesClustersGET /v1/k8s/clustersk8sLists the org's DOKS clusters (Visor, house account) folded with the org's BYO clusters —…
listKubernetesNodesGET /v1/k8s/nodesk8sReturns every DOKS worker node in the org's clusters as a machine — the SAME set the…
listMachineAgentsGET /v1/machines/agentsmachinesReturns every agent↔machine binding in the caller's org — which machines are running…
listMachinesGET /v1/machinesmachinesReturns every machine the caller's org has — Visor's registry, the live DigitalOcean…
recordFleetSamplePOST /v1/fleet/samplesfleetRecords a BYO worker's live GPU utilization into the SAME series the fleet board overlays.
scaleNodePoolPOST /v1/clusters/{clusterId}/pools/{poolId}/scaleclustersResizes a node pool to an absolute node count and returns the pool as Visor reports it…
unbindMachineAgentDELETE /v1/machines/{id}/agentmachinesDetaches the agent runtime from one of the caller org's machines.

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


All 107 tools · The door · API reference

Generated from tools/list on https://api.hanzo.ai/v1/mcp — 109 tools captured 2026-08-14, of which 107 are documented here (the operator surface is not published).

How is this guide?

On this page