{
  "mcp": {
    "version": "1.0.0"
  },
  "server": {
    "name": "DCL Trust Oracle",
    "version": "2.0.0",
    "description": "Deterministic AI audit layer providing tamper-evident, privacy-first policy evaluation and post-action forensic decoding via x402 micropayments.",
    "provider": "Fronesis Labs"
  },
  "endpoints": {
    "http": {
      "base_url": "https://fronesislabs.com"
    }
  },
  "tools": [
    {
      "name": "evaluate_fast",
      "description": "FAST Pre-Action Audit ($0.01).",
      "input_schema": {
        "type": "object",
        "properties": {
          "response": { "type": "string" },
          "agent_id": { "type": "string" }
        },
        "required": ["response", "agent_id"]
      },
      "output_schema": { "type": "object" },
      "transport": {
        "http": { "method": "POST", "path": "/evaluate/fast" }
      }
    },
    {
      "name": "evaluate_strict",
      "description": "STRICT Pre-Action Audit ($0.05).",
      "input_schema": {
        "type": "object",
        "properties": {
          "response": { "type": "string" },
          "agent_id": { "type": "string" }
        },
        "required": ["response", "agent_id"]
      },
      "output_schema": { "type": "object" },
      "transport": {
        "http": { "method": "POST", "path": "/evaluate/strict" }
      }
    },
    {
      "name": "evaluate_jailbreak",
      "description": "PRE-ACTION Instruction Adherence Check ($0.02).",
      "input_schema": {
        "type": "object",
        "properties": {
          "response": { "type": "string" },
          "agent_id": { "type": "string" }
        },
        "required": ["response", "agent_id"]
      },
      "output_schema": { "type": "object" },
      "transport": {
        "http": { "method": "POST", "path": "/evaluate/jailbreak" }
      }
    },
    {
      "name": "evaluate_safety",
      "description": "PRE-ACTION Baseline Safety Check ($0.01).",
      "input_schema": {
        "type": "object",
        "properties": {
          "response": { "type": "string" },
          "agent_id": { "type": "string" }
        },
        "required": ["response", "agent_id"]
      },
      "output_schema": { "type": "object" },
      "transport": {
        "http": { "method": "POST", "path": "/evaluate/safety" }
      }
    },
    {
      "name": "evaluate_quality",
      "description": "PRE-ACTION Content Quality & Drift Check ($0.03).",
      "input_schema": {
        "type": "object",
        "properties": {
          "response": { "type": "string" },
          "agent_id": { "type": "string" }
        },
        "required": ["response", "agent_id"]
      },
      "output_schema": { "type": "object" },
      "transport": {
        "http": { "method": "POST", "path": "/evaluate/quality" }
      }
    },
    {
      "name": "evaluate_batch",
      "description": "PRE-ACTION Bulk Processing ($0.10).",
      "input_schema": {
        "type": "object",
        "properties": {
          "items": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "response": { "type": "string" },
                "policy": { "type": "string" }
              },
              "required": ["response"]
            }
          },
          "agent_id": { "type": "string" }
        },
        "required": ["items", "agent_id"]
      },
      "output_schema": { "type": "object" },
      "transport": {
        "http": { "method": "POST", "path": "/evaluate/batch" }
      }
    },
    {
      "name": "pipeline_start",
      "description": "SESSION Management ($0.05).",
      "input_schema": {
        "type": "object",
        "properties": {
          "agent_id": { "type": "string" },
          "scope": { "type": "string" },
          "ttl_seconds": { "type": "integer" }
        },
        "required": ["agent_id"]
      },
      "output_schema": { "type": "object" },
      "transport": {
        "http": { "method": "POST", "path": "/pipeline/start" }
      }
    },
    {
      "name": "audit_decode",
      "description": "POST-ACTION Basic Audit ($0.10).",
      "input_schema": {
        "type": "object",
        "properties": {
          "tx_hash": { "type": "string" }
        },
        "required": ["tx_hash"]
      },
      "output_schema": { "type": "object" },
      "transport": {
        "http": { "method": "GET", "path": "/audit/{tx_hash}" }
      }
    },
    {
      "name": "audit_decode_deep",
      "description": "POST-ACTION Deep Forensic Audit ($0.50).",
      "input_schema": {
        "type": "object",
        "properties": {
          "tx_hash": { "type": "string" }
        },
        "required": ["tx_hash"]
      },
      "output_schema": { "type": "object" },
      "transport": {
        "http": { "method": "GET", "path": "/audit/{tx_hash}/deep" }
      }
    }
  ]
}
