All cards
Hardware node active public

node-beacon-vps

Always-on Ubuntu VPS at the public edge and mesh backbone (86.48.30.196)

Endpoint
ssh://root@86.48.30.196
Packaging
Owner
operator
Version
v1
Updated
2026-06-26
Health check
ssh -o BatchMode=yes root@86.48.30.196 true

Purpose

Always-on Ubuntu LTS VPS. Public edge, mesh services, emergency Claude Code environment. Most UAI services run here. Most agent sessions start here.

Capabilities 4

public-edge-hosting
Beacon proxy on ports 80, 443, 5900
mesh-service-hosting
Explorer, Mesh, Switchboard on mesh IPs
cadence-v6-hosting
Cadence services on loopback ports
emergency-claude
Emergency Claude Code environment

History 1

Createdai2026-06-26
Card created by AI session (audit 2783).

Related documents 0

Raw card data (JSON)

click to expand
{
  "id": "node-beacon-vps",
  "kind": "hardware-node",
  "summary": "Always-on Ubuntu VPS at the public edge and mesh backbone (86.48.30.196)",
  "purpose": "Always-on Ubuntu LTS VPS. Public edge, mesh services, emergency Claude Code environment. Most UAI services run here. Most agent sessions start here.",
  "endpoint": "ssh://root@86.48.30.196",
  "exposure": "public",
  "capabilities_json": "[{\"name\": \"public-edge-hosting\", \"description\": \"Beacon proxy on ports 80, 443, 5900\"}, {\"name\": \"mesh-service-hosting\", \"description\": \"Explorer, Mesh, Switchboard on mesh IPs\"}, {\"name\": \"cadence-v6-hosting\", \"description\": \"Cadence services on loopback ports\"}, {\"name\": \"emergency-claude\", \"description\": \"Emergency Claude Code environment\"}]",
  "dependencies_json": "[]",
  "instructions_slug": "uai-doc-runbooks-uapi-master-program-control",
  "health_check": "ssh -o BatchMode=yes root@86.48.30.196 true",
  "credential_alias": "beacon-root-ssh",
  "packaging": "",
  "owner": "operator",
  "status": "active",
  "required_tags_json": "[\"ai-authored\", \"capability-card\", \"docs\", \"hardware-node\", \"uai-explorer\"]",
  "ai_visible": 1,
  "human_visible": 1,
  "embedding_dim": 0,
  "version_id": 1,
  "created_at": "2026-06-26T23:53:32.101829+00:00",
  "updated_at": "2026-06-26T23:53:32.101829+00:00"
}

API examples

curl, Python, JavaScript
# curl
curl -H "Authorization: Bearer $UAI_EXPLORER_AI_API_KEY" \
     https://explorer.united-ai.ca/api/ai/capability/node-beacon-vps
# python (requests)
import requests
r = requests.get(
    "https://explorer.united-ai.ca/api/ai/capability/node-beacon-vps",
    headers={"Authorization": f"Bearer {token}"},
)
card = r.json()
// JavaScript (fetch)
const r = await fetch(
  "https://explorer.united-ai.ca/api/ai/capability/node-beacon-vps",
  { headers: { Authorization: `Bearer ${token}` } }
);
const card = await r.json();