MCP AGENT DEMO · LIVE INVOCATION

Watch an Agent Use AINumbers

A real MCP session: the agent discovers the suite via suite-registry.json, selects a tool, constructs a typed invocation, and receives a deterministic JSON response. Zero server calls. Zero inference. Client-side replay.

MCP v1+ AP2 v1.0 Deterministic Zero PII
agent@ainumbers ~ mcp-session

What just happened

Five discrete steps: no magic, no inference. Here is exactly what each phase does.

01
Discovery
The agent reads suite-registry.json at the root. 351 tools, typed schemas, MCP v1+ compliant manifest entries. No API key needed: the registry is public and machine-readable.
suite-registry.json
02
Typed Invocation
Every tool exposes a manifest.json with a full inputSchema (JSON Schema Draft-07). The agent constructs a validated call: no prompt engineering, no natural-language parsing required.
JSON Schema · Draft-07
03
Deterministic Response
Each tool runs synchronously in a JS sandbox. Same inputs always produce the same outputs. No model inference, no hallucination risk. SR 11-7 compliant for model risk governance. Results are AP2-envelope ready.
SR 11-7 · AP2 v1.0

Try it yourself

These tools appear in real agent invocation demos. Open any one and interact directly: client-side, zero PII.

MCP integration

Point your MCP-compatible agent at the AINumbers server endpoint. The registry loads once; tool schemas resolve on demand.

Connect once. Discover 351 tools via the registry. Each tool's manifest.json provides the full inputSchema, outputSchema, and policy_mandate envelope spec.

Connect command
mcp connect https://ainumbers.co/mcp
suite-registry.json · excerpt
{
  "registry_version": "1.0.0",
  "mcp_version": "1+",
  "tool_count": 351,
  "categories": [
    "fraud-risk", "payments", "aml", "compliance",
    "esg", "credit", "capital", "liquidity",
    "rbe-deterministic", "iso20022"
  ],
  "tools": [
    {
      "id": "fraud-score-simulator",
      "category": "fraud-risk",
      "manifest": "https://ainumbers.co/tools/04-fraud-score-simulator/manifest.json",
      "ap2": true,
      "deterministic": true
    },
    "... 350 more tools"
  ]
}