All cards
Service active mesh

service-uai-explorer-rust

Rust catalog on Beacon mesh (18080), the canonical production UAI Explorer surface

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

Purpose

Standalone Rust and Axum documentation catalog. The canonical production surface for the UAI Explorer product. HTTP API-first, schema v4, with thousands of catalog entities per live health check.

Capabilities 4

health
Returns version, schema version, entity count
catalog-read
Read entities and run search
namespace-queries
Scoped asset queries by tag namespace
context-packs
AI-readable context bundles for agents

History 1

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

Related documents 0

Raw card data (JSON)

click to expand
{
  "id": "service-uai-explorer-rust",
  "kind": "service",
  "summary": "Rust catalog on Beacon mesh (18080), the canonical production UAI Explorer surface",
  "purpose": "Standalone Rust and Axum documentation catalog. The canonical production surface for the UAI Explorer product. HTTP API-first, schema v4, with thousands of catalog entities per live health check.",
  "endpoint": "http://100.119.16.109:18080",
  "exposure": "mesh",
  "capabilities_json": "[{\"name\": \"health\", \"description\": \"Returns version, schema version, entity count\"}, {\"name\": \"catalog-read\", \"description\": \"Read entities and run search\"}, {\"name\": \"namespace-queries\", \"description\": \"Scoped asset queries by tag namespace\"}, {\"name\": \"context-packs\", \"description\": \"AI-readable context bundles for agents\"}]",
  "dependencies_json": "[\"node-beacon-vps\"]",
  "instructions_slug": "uai-doc-runbooks-uapi-master-program-control",
  "health_check": "curl -fsS http://100.119.16.109:18080/health",
  "credential_alias": "uai-explorer-ai-api-key",
  "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:29.868647+00:00",
  "updated_at": "2026-06-26T23:53:29.868647+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-explorer-rust
# python (requests)
import requests
r = requests.get(
    "https://explorer.united-ai.ca/api/ai/capability/service-uai-explorer-rust",
    headers={"Authorization": f"Bearer {token}"},
)
card = r.json()
// JavaScript (fetch)
const r = await fetch(
  "https://explorer.united-ai.ca/api/ai/capability/service-uai-explorer-rust",
  { headers: { Authorization: `Bearer ${token}` } }
);
const card = await r.json();