Docs
OpenClaw
OpenClaw
Query your AITracer traces and cost data from OpenClaw — WhatsApp, Telegram, Discord, or any chat channel.
Chat interface: OpenClaw reads your existing Traces via API — it does not replace Agent Lab. Run agents locally in the dashboard (Agent Lab), then query history from chat.
AITracer integrates with OpenClaw through a skill plugin and MCP server.
What you can ask
- "Show me my recent traces"
- "What's my AI spending this month?"
- "Record this call as a trace"
- "Replay trace req_def456"
Verification and governance tools are available when your deployment enables them.
Setup
Option 1: Skill plugin
- Copy
extensions/openclaw/aitracer-skill.tsto~/.openclaw/extensions/aitracer/skill.ts - Set environment variables:
export AITRACER_API_KEY="akt_your_key_here"
export AITRACER_BASE_URL="https://your-app.example.com"- Restart OpenClaw.
Option 2: MCP server
{
"mcpServers": {
"aitracer": {
"command": "npx",
"args": ["@noirstack/aitracer-mcp"],
"env": {
"AITRACER_API_KEY": "akt_your_key_here"
}
}
}
}Add to ~/.openclaw/mcp.json.
Skill tools
| Tool | Trigger phrases |
|---|---|
list_traces | "show traces", "recent traces" |
record_trace | "record trace", "log this call" |
cost_estimate | "cost", "spending" |
cost_report | "monthly report" |
replay_trace | "replay" |
verify_trace | "verify", "integrity" (when enabled) |
evaluate_trace | "evaluate", "quality" |
diagnostics | "health check", "status" |
Full MCP tool list: @noirstack/aitracer-mcp.