#!/usr/bin/env node /** * atrium MCP server (stdio). * * A thin proxy over our /api/v1 observability surface. It carries an `oc_live_` * Bearer key (from OPENCLAW_WEBCHAT_API_KEY) against the deployment `.site` * origin (OPENCLAW_WEBCHAT_API_BASE) and exposes traces/KPIs/OpenClaw queries/ * anomalies as MCP tools for OpenClaw agents. * * It imports NOTHING from the Convex app — HTTP only. Each tool maps 1:1 to a * permission enforced server-side (`requirePermission`), so a scoped key simply * gets a 403 for tools it isn't allowed to call. A tool whose route is not yet * deployed returns the API's response/error gracefully rather than crashing. */ export {};