All cards
Service active mesh

service-uai-mesh

Mesh control plane on Beacon 7100: registry, products, status (Rust/Axum)

Endpoint
http://100.119.16.109:7100
Packaging
systemd
Owner
operator
Version
v1
Updated
2026-06-26
Health check
curl -fsS http://100.119.16.109:7100/health

Purpose

Mesh control plane. Node and service registry, product generation, and mesh status. Built in Rust with Axum. Bound mesh-only.

Capabilities 4

node-registry
List and register mesh nodes
service-registry
List and register mesh services
product-generate
Generate product definitions
mesh-status
Aggregate mesh health and metrics

History 2

Noteai2026-07-09
Verified active in capability-map post repair pass
Fable pick #1 capability card repair 20260709. Thaladex product OFF; Explorer hygiene only.
Createdai2026-06-26
Card created by AI session (audit 2776).

Related documents 0

Raw card data (JSON)

click to expand
{
  "id": "service-uai-mesh",
  "kind": "service",
  "summary": "Mesh control plane on Beacon 7100: registry, products, status (Rust/Axum)",
  "purpose": "Mesh control plane. Node and service registry, product generation, and mesh status. Built in Rust with Axum. Bound mesh-only.",
  "endpoint": "http://100.119.16.109:7100",
  "exposure": "mesh",
  "capabilities_json": "[{\"name\": \"node-registry\", \"description\": \"List and register mesh nodes\"}, {\"name\": \"service-registry\", \"description\": \"List and register mesh services\"}, {\"name\": \"product-generate\", \"description\": \"Generate product definitions\"}, {\"name\": \"mesh-status\", \"description\": \"Aggregate mesh health and metrics\"}]",
  "dependencies_json": "[\"node-beacon-vps\"]",
  "instructions_slug": "",
  "health_check": "curl -fsS http://100.119.16.109:7100/health",
  "credential_alias": "uai-mesh-env",
  "packaging": "systemd",
  "owner": "operator",
  "status": "active",
  "required_tags_json": "[\"ai-authored\", \"capability-card\", \"docs\", \"service\", \"uai-explorer\"]",
  "ai_visible": 1,
  "human_visible": 1,
  "embedding_dim": 0,
  "version_id": 1,
  "created_at": "2026-06-26T23:53:30.321132+00:00",
  "updated_at": "2026-06-26T23:53:30.321132+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/service-uai-mesh
# python (requests)
import requests
r = requests.get(
    "https://explorer.united-ai.ca/api/ai/capability/service-uai-mesh",
    headers={"Authorization": f"Bearer {token}"},
)
card = r.json()
// JavaScript (fetch)
const r = await fetch(
  "https://explorer.united-ai.ca/api/ai/capability/service-uai-mesh",
  { headers: { Authorization: `Bearer ${token}` } }
);
const card = await r.json();