Claude Platform Docs

Rivela token del tunnel

$ ant beta:tunnels reveal-token
POST/v1/tunnels/{tunnel_id}/reveal_token

L'API Tunnels è in research preview (anteprima di ricerca). Richiede l'header anthropic-beta: mcp-tunnels-2026-06-22 e può cambiare senza un periodo di deprecazione. Sostituisce gli endpoint dell'Admin API in /v1/organizations/tunnels, che rimangono disponibili durante una finestra di migrazione.

Rivela il token del connettore di un tunnel. Il valore viene recuperato in tempo reale a ogni chiamata; Anthropic non lo memorizza. Chiamate ripetute restituiscono lo stesso valore finché il token non viene ruotato. Esposto come POST in modo che il token non compaia nei log di accesso degli intermediari.

Parameters
--tunnel-id: string

Path parameter tunnel_id

--beta: optional array of AnthropicBeta

Optional header to specify the beta version(s) you want to use.

Returns
beta_tunnel_token: object{ id, tunnel_token, type }

A tunnel's connector token.

id: string

Stable identifier for the current token value. Changes when the token is rotated.

tunnel_token: string

The connector token used to run the tunnel. Treat as a credential.

type: "tunnel_token"
Rivela token del tunnel
ant beta:tunnels reveal-token \
  --api-key my-anthropic-api-key \
  --tunnel-id tunnel_id
Returns Examples
Response 200
{
  "id": "id",
  "tunnel_token": "tunnel_token",
  "type": "tunnel_token"
}