agiscorecard-web3-workbench

AGI Scorecard Web3 Workbench: ten free deterministic review tools (stablecoin, gas, zkML, agents).

Should I use this

Quality & Safety

A
Description quality
100%
Schema completeness
97%
Naming quality
88%
Poisoning risk
100%
Permission match
90%
Protocol compliance
100%

Findings (1)

  • LOWTool 'fetch' suggests web access but openWorldHint=falsein fetch

Based on automated analysis of tool definitions and protocol compliance.

Context Cost

~9,815Tokens (tool definitions)
~9.4 KBTypical response size
Significant attention impact (7.67% of 128k context)

This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.

Install

One-Click Install

Add this to your `claude_desktop_config.json` file:

{
  "mcpServers": {
    "agiscorecard-web3-workbench": {
      "url": "https://web3.agiscorecard.com/mcp"
    }
  }
}

Remote endpoints

https://web3.agiscorecard.com/mcpstreamable-http

What it can do

Tool inventory

Tools (12)

🟒 Read-only🟑 WriteπŸ”΄ Deleteβšͺ Unknown
🟒search(query)

Search this server’s public AI/Web3 tools and citation pages. English and Chinese names supported. Empty query lists the available worksheets.

Input Schema

{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "maxLength": 160
    }
  },
  "required": [
    "query"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "url": {
            "type": "string"
          }
        },
        "required": [
          "id",
          "title",
          "url"
        ],
        "additionalProperties": false
      }
    }
  },
  "required": [
    "results"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false
}
🟒fetch(id)

Retrieve a public tool reference by the ID returned from search. Contains methodology, limits, official source links and fictional worked examples; no user records. Cite the returned canonical URL.

Input Schema

{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "enum": [
        "reconcile",
        "evidence",
        "route",
        "protocol",
        "permit",
        "compute",
        "incentives",
        "proof",
        "calls",
        "disclosures"
      ]
    }
  },
  "required": [
    "id"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false
}

Output Schema

{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "text": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "metadata": {
      "type": "object",
      "properties": {
        "version": {
          "type": "string"
        },
        "revision": {
          "type": "string"
        },
        "reviewedAt": {
          "type": "string"
        },
        "evidenceType": {
          "type": "string"
        }
      },
      "required": [
        "version",
        "revision",
        "reviewedAt",
        "evidenceType"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "id",
    "title",
    "text",
    "url",
    "metadata"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false
}
🟒reconcile_stablecoin_records(invoices, transfers)

Stable Reconcile compares your declared invoices with recorded stablecoin transfers. It separates partial payments, pending transfers and wrong-network records, with exact decimal totals. Use it for a local exception review before updating your books. No wallet sync, automatic matching, FX, refund processing, tax accounting or independent finality checks. Retrieve reconcile with fetch or read its example resource to obtain exact inputs. Parameters are processed remotely without application persistence.

Input Schema

{
  "type": "object",
  "properties": {
    "invoices": {
      "maxItems": 200,
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "maxLength": 131072,
            "description": "Record ID (preserve source text; decimal amounts must stay strings)"
          },
          "network": {
            "type": "string",
            "maxLength": 131072,
            "description": "Network (preserve source text; decimal amounts must stay strings)"
          },
          "asset": {
            "type": "string",
            "maxLength": 131072,
            "description": "Asset (preserve source text; decimal amounts must stay strings)"
          },
          "amount": {
            "type": "string",
            "maxLength": 131072,
            "description": "Amount (preserve source text; decimal amounts must stay strings)"
          }
        },
        "required": [
          "id",
          "network",
          "asset",
          "amount"
        ],
        "additionalProperties": false,
        "description": "Exact record structure; the engine additionally checks bounds, dates, identifiers and cross-field constraints."
      },
      "description": "Invoices"
    },
    "transfers": {
      "maxItems": 200,
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "maxLength": 131072,
            "description": "Record ID (preserve source text; decimal amounts must stay strings)"
          },
          "invoice": {
            "type": "string",
            "maxLength": 131072,
            "description": "Invoice (preserve source text; decimal amounts must stay strings)"
          },
          "network": {
            "type": "string",
            "maxLength": 131072,
            "description": "Network (preserve source text; decimal amounts must stay strings)"
          },
          "asset": {
            "type": "string",
            "maxLength": 131072,
            "description": "Asset (preserve source text; decimal amounts must stay strings)"
          },
          "amount": {
            "type": "string",
            "maxLength": 131072,
            "description": "Amount (preserve source text; decimal amounts must stay strings)"
          },
          "state": {
            "type": "string",
            "enum": [
              "finalized",
              "pending",
              "reverted"
            ],
            "description": "State (preserve source text; decimal amounts must stay strings)"
          }
        },
        "required": [
          "id",
          "invoice",
          "network",
          "asset",
          "amount",
          "state"
        ],
        "additionalProperties": false,
        "description": "Exact record structure; the engine additionally checks bounds, dates, identifiers and cross-field constraints."
      },
      "description": "Transfers"
    }
  },
  "required": [
    "invoices",
    "transfers"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "description": "Exact record structure; the engine additionally checks bounds, dates, identifiers and cross-field constraints."
}

Output Schema

{
  "type": "object",
  "properties": {
    "toolId": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "revision": {
      "type": "string"
    },
    "processing": {
      "type": "string"
    },
    "evidenceStatus": {
      "type": "string"
    },
    "citation": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "url": {
          "type": "string"
        },
        "methodUrl": {
          "type": "string"
        },
        "reviewedAt": {
          "type": "string"
        },
        "scope": {
          "type": "string"
        }
      },
      "required": [
        "title",
        "url",
        "methodUrl",
        "reviewedAt",
        "scope"
      ],
      "additionalProperties": false
    },
    "officialReferences": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "relationship": {
            "type": "string"
          }
        },
        "required": [
          "title",
          "url",
          "relationship"
        ],
        "additionalProperties": false
      }
    },
    "limitations": {
      "type": "string"
    },
    "report": {
      "type": "object",
      "properties": {
        "version": {
          "type": "string"
        },
        "title": {
          "type": "string"
        },
        "summary": {
          "type": "string"
        },
        "metrics": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "label": {
                "type": "string"
              },
              "value": {
                "type": [
                  "string",
                  "number"
                ]
              }
            },
            "required": [
              "label",
              "value"
            ],
            "additionalProperties": false
          }
        },
        "tables": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "title": {
                "type": "string"
              },
              "columns": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "rows": {
                "type": "array",
                "items": {
                  "type": "array",
                  "items": {
                    "type": [
                      "string",
                      "number",
                      "boolean",
                      "null"
                    ]
                  }
                }
              }
            },
            "required": [
              "title",
              "columns",
              "rows"
            ],
            "additionalProperties": false
          }
        },
        "notes": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "data": {}
      },
      "required": [
        "version",
        "title",
        "summary",
        "metrics",
        "tables",
        "notes",
        "data"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "toolId",
    "version",
    "revision",
    "processing",
    "evidenceStatus",
    "citation",
    "officialReferences",
    "limitations",
    "report"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false
}
🟒review_agent_evidence(task, version, asOf, maxAgeDays, records)

Agent Evidence reviews imported task outcomes within one task, version and date window. It deduplicates sample labels and shows failures, exclusions and uncertainty. It helps review a supplier comparison; it does not run evaluations or verify reviewer identities. No public reputation ranking, identity verification, calibrated prediction or Sybil detection. Retrieve evidence with fetch or read its example resource to obtain exact inputs. Parameters are processed remotely without application persistence.

Input Schema

{
  "type": "object",
  "properties": {
    "task": {
      "type": "string",
      "maxLength": 131072,
      "description": "Task (preserve source text; decimal amounts must stay strings)"
    },
    "version": {
      "type": "string",
      "maxLength": 131072,
      "description": "Version (preserve source text; decimal amounts must stay strings)"
    },
    "asOf": {
      "type": "string",
      "maxLength": 131072,
      "description": "Review date (UTC) (preserve source text; decimal amounts must stay strings)"
    },
    "maxAgeDays": {
      "type": "number",
      "description": "Maximum evidence age (days)"
    },
    "records": {
      "maxItems": 200,
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "maxLength": 131072,
            "description": "Record ID (preserve source text; decimal amounts must stay strings)"
          },
          "provider": {
            "type": "string",
            "maxLength": 131072,
            "description": "Provider (preserve source text; decimal amounts must stay strings)"
          },
          "task": {
            "type": "string",
            "maxLength": 131072,
            "description": "Task (preserve source text; decimal amounts must stay strings)"
          },
          "version": {
            "type": "string",
            "maxLength": 131072,
            "description": "Version (preserve source text; decimal amounts must stay strings)"
          },
          "sample": {
            "type": "string",
            "maxLength": 131072,
            "description": "Sample (preserve source text; decimal amounts must stay strings)"
          },
          "reviewer": {
            "type": "string",
            "maxLength": 131072,
            "description": "Reviewer (preserve source text; decimal amounts must stay strings)"
          },
          "date": {
            "type": "string",
            "maxLength": 131072,
            "description": "Date (preserve source text; decimal amounts must stay strings)"
          },
          "accepted": {
            "type": "boolean",
            "description": "Accepted"
          },
          "relation": {
            "type": "string",
            "enum": [
              "independent",
              "self",
              "unknown"
            ],
            "description": "Relation (preserve source text; decimal amounts must stay strings)"
          }
        },
        "required": [
          "id",
          "provider",
          "task",
          "version",
          "sample",
          "reviewer",
          "date",
          "accepted",
          "relation"
        ],
        "additionalProperties": false,
        "description": "Exact record structure; the engine additionally checks bounds, dates, identifiers and cross-field constraints."
      },
      "description": "Records"
    }
  },
  "required": [
    "task",
    "version",
    "asOf",
    "maxAgeDays",
    "records"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "description": "Exact record structure; the engine additionally checks bounds, dates, identifiers and cross-field constraints."
}

Output Schema

{
  "type": "object",
  "properties": {
    "toolId": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "revision": {
      "type": "string"
    },
    "processing": {
      "type": "string"
    },
    "evidenceStatus": {
      "type": "string"
    },
    "citation": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "url": {
          "type": "string"
        },
        "methodUrl": {
          "type": "string"
        },
        "reviewedAt": {
          "type": "string"
        },
        "scope": {
          "type": "string"
        }
      },
      "required": [
        "title",
        "url",
        "methodUrl",
        "reviewedAt",
        "scope"
      ],
      "additionalProperties": false
    },
    "officialReferences": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "relationship": {
            "type": "string"
          }
        },
        "required": [
          "title",
          "url",
          "relationship"
        ],
        "additionalProperties": false
      }
    },
    "limitations": {
      "type": "string"
    },
    "report": {
      "type": "object",
      "properties": {
        "version": {
          "type": "string"
        },
        "title": {
          "type": "string"
        },
        "summary": {
          "type": "string"
        },
        "metrics": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "label": {
                "type": "string"
              },
              "value": {
                "type": [
                  "string",
                  "number"
                ]
              }
            },
            "required": [
              "label",
              "value"
            ],
            "additionalProperties": false
          }
        },
        "tables": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "title": {
                "type": "string"
              },
              "columns": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "rows": {
                "type": "array",
                "items": {
                  "type": "array",
                  "items": {
                    "type": [
                      "string",
                      "number",
                      "boolean",
                      "null"
                    ]
                  }
                }
              }
            },
            "required": [
              "title",
              "columns",
              "rows"
            ],
            "additionalProperties": false
          }
        },
        "notes": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "data": {}
      },
      "required": [
        "version",
        "title",
        "summary",
        "metrics",
        "tables",
        "notes",
        "data"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "toolId",
    "version",
    "revision",
    "processing",
    "evidenceStatus",
    "citation",
    "officialReferences",
    "limitations",
    "report"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false
}
🟒plan_fallback_routes(currency, budget, maxLatencyMs, minSuccess, maxAttempts, ...)

Route Lab compares short supplier sequences using entered cost, success and latency assumptions. It checks the worst-case total against your budget before sorting feasible options by expected cost. It is an offline planning tool; no model or payment is called. Offline planning only. No live requests, model judge, payment, dynamic bandit or production routing. Retrieve route with fetch or read its example resource to obtain exact inputs. Parameters are processed remotely without application persistence.

Input Schema

{
  "type": "object",
  "properties": {
    "currency": {
      "type": "string",
      "maxLength": 131072,
      "description": "Currency (preserve source text; decimal amounts must stay strings)"
    },
    "budget": {
      "type": "string",
      "maxLength": 131072,
      "description": "Total budget (preserve source text; decimal amounts must stay strings)"
    },
    "maxLatencyMs": {
      "type": "number",
      "description": "Total latency bound (ms)"
    },
    "minSuccess": {
      "type": "number",
      "description": "Minimum success probability (0–1)"
    },
    "maxAttempts": {
      "type": "number",
      "description": "Maximum attempts"
    },
    "candidates": {
      "maxItems": 200,
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "maxLength": 131072,
            "description": "Record ID (preserve source text; decimal amounts must stay strings)"
          },
          "cost": {
            "type": "string",
            "maxLength": 131072,
            "description": "Cost (preserve source text; decimal amounts must stay strings)"
          },
          "success": {
            "type": "number",
            "description": "Success probability (0–1)"
          },
          "latencyMs": {
            "type": "number",
            "description": "Attempt latency bound (ms)"
          },
          "allowed": {
            "type": "boolean",
            "description": "Allowed by your policy"
          }
        },
        "required": [
          "id",
          "cost",
          "success",
          "latencyMs",
          "allowed"
        ],
        "additionalProperties": false,
        "description": "Exact record structure; the engine additionally checks bounds, dates, identifiers and cross-field constraints."
      },
      "description": "Candidates"
    }
  },
  "required": [
    "currency",
    "budget",
    "maxLatencyMs",
    "minSuccess",
    "maxAttempts",
    "candidates"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "description": "Exact record structure; the engine additionally checks bounds, dates, identifiers and cross-field constraints."
}

Output Schema

{
  "type": "object",
  "properties": {
    "toolId": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "revision": {
      "type": "string"
    },
    "processing": {
      "type": "string"
    },
    "evidenceStatus": {
      "type": "string"
    },
    "citation": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "url": {
          "type": "string"
        },
        "methodUrl": {
          "type": "string"
        },
        "reviewedAt": {
          "type": "string"
        },
        "scope": {
          "type": "string"
        }
      },
      "required": [
        "title",
        "url",
        "methodUrl",
        "reviewedAt",
        "scope"
      ],
      "additionalProperties": false
    },
    "officialReferences": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "relationship": {
            "type": "string"
          }
        },
        "required": [
          "title",
          "url",
          "relationship"
        ],
        "additionalProperties": false
      }
    },
    "limitations": {
      "type": "string"
    },
    "report": {
      "type": "object",
      "properties": {
        "version": {
          "type": "string"
        },
        "title": {
          "type": "string"
        },
        "summary": {
          "type": "string"
        },
        "metrics": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "label": {
                "type": "string"
              },
              "value": {
                "type": [
                  "string",
                  "number"
                ]
              }
            },
            "required": [
              "label",
              "value"
            ],
            "additionalProperties": false
          }
        },
        "tables": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "title": {
                "type": "string"
              },
              "columns": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "rows": {
                "type": "array",
                "items": {
                  "type": "array",
                  "items": {
                    "type": [
                      "string",
                      "number",
                      "boolean",
                      "null"
                    ]
                  }
                }
              }
            },
            "required": [
              "title",
              "columns",
              "rows"
            ],
            "additionalProperties": false
          }
        },
        "notes": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "data": {}
      },
      "required": [
        "version",
        "title",
        "summary",
        "metrics",
        "tables",
        "notes",
        "data"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "toolId",
    "version",
    "revision",
    "processing",
    "evidenceStatus",
    "citation",
    "officialReferences",
    "limitations",
    "report"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false
}
🟒read_protocol_profiles(purpose, status, asOf, maxAgeDays)

Protocol Ledger is a free, dated reference for five payment, agent-identity and token interfaces. Each record preserves its official specification, review date and interpretation limits. Filter the same snapshot in the browser or retrieve it through the JSON API. Five initial profiles; no market prices, exhaustive schema coverage, real-time protocol monitoring or paid endpoint. Retrieve protocol with fetch or read its example resource to obtain exact inputs. Parameters are processed remotely without application persistence.

Input Schema

{
  "type": "object",
  "properties": {
    "purpose": {
      "type": "string",
      "enum": [
        "all",
        "payment",
        "identity",
        "token"
      ],
      "description": "Purpose (preserve source text; decimal amounts must stay strings)"
    },
    "status": {
      "type": "string",
      "enum": [
        "all",
        "draft",
        "standard",
        "specification"
      ],
      "description": "Status (preserve source text; decimal amounts must stay strings)"
    },
    "asOf": {
      "type": "string",
      "maxLength": 131072,
      "description": "Review date (UTC) (preserve source text; decimal amounts must stay strings)"
    },
    "maxAgeDays": {
      "type": "number",
      "description": "Maximum evidence age (days)"
    }
  },
  "required": [
    "purpose",
    "status",
    "asOf",
    "maxAgeDays"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "description": "Exact record structure; the engine additionally checks bounds, dates, identifiers and cross-field constraints."
}

Output Schema

{
  "type": "object",
  "properties": {
    "toolId": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "revision": {
      "type": "string"
    },
    "processing": {
      "type": "string"
    },
    "evidenceStatus": {
      "type": "string"
    },
    "citation": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "url": {
          "type": "string"
        },
        "methodUrl": {
          "type": "string"
        },
        "reviewedAt": {
          "type": "string"
        },
        "scope": {
          "type": "string"
        }
      },
      "required": [
        "title",
        "url",
        "methodUrl",
        "reviewedAt",
        "scope"
      ],
      "additionalProperties": false
    },
    "officialReferences": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "relationship": {
            "type": "string"
          }
        },
        "required": [
          "title",
          "url",
          "relationship"
        ],
        "additionalProperties": false
      }
    },
    "limitations": {
      "type": "string"
    },
    "report": {
      "type": "object",
      "properties": {
        "version": {
          "type": "string"
        },
        "title": {
          "type": "string"
        },
        "summary": {
          "type": "string"
        },
        "metrics": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "label": {
                "type": "string"
              },
              "value": {
                "type": [
                  "string",
                  "number"
                ]
              }
            },
            "required": [
              "label",
              "value"
            ],
            "additionalProperties": false
          }
        },
        "tables": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "title": {
                "type": "string"
              },
              "columns": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "rows": {
                "type": "array",
                "items": {
                  "type": "array",
                  "items": {
                    "type": [
                      "string",
                      "number",
                      "boolean",
                      "null"
                    ]
                  }
                }
              }
            },
            "required": [
              "title",
              "columns",
              "rows"
            ],
            "additionalProperties": false
          }
        },
        "notes": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "data": {}
      },
      "required": [
        "version",
        "title",
        "summary",
        "metrics",
        "tables",
        "notes",
        "data"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "toolId",
    "version",
    "revision",
    "processing",
    "evidenceStatus",
    "citation",
    "officialReferences",
    "limitations",
    "report"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false
}
🟒check_data_permissions(use, region, asOf, currency, receivedRevenue, ...)

Data Permit compares an intended AI use with your recorded grant conditions: region, expiry, revocation and consent status. It calculates a proposed split of received revenue and keeps incompatible shares unallocated. Matching fields does not establish a legal license. No legal opinion, rights verification, consent collection, access enforcement, token issuance or payment. Retrieve permit with fetch or read its example resource to obtain exact inputs. Parameters are processed remotely without application persistence.

Input Schema

{
  "type": "object",
  "properties": {
    "use": {
      "type": "string",
      "enum": [
        "training",
        "inference",
        "evaluation",
        "redistribution"
      ],
      "description": "Use (preserve source text; decimal amounts must stay strings)"
    },
    "region": {
      "type": "string",
      "maxLength": 131072,
      "description": "Region (preserve source text; decimal amounts must stay strings)"
    },
    "asOf": {
      "type": "string",
      "maxLength": 131072,
      "description": "Review date (UTC) (preserve source text; decimal amounts must stay strings)"
    },
    "currency": {
      "type": "string",
      "maxLength": 131072,
      "description": "Currency (preserve source text; decimal amounts must stay strings)"
    },
    "receivedRevenue": {
      "type": "string",
      "maxLength": 131072,
      "description": "Revenue already received (preserve source text; decimal amounts must stay strings)"
    },
    "datasets": {
      "maxItems": 200,
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "maxLength": 131072,
            "description": "Record ID (preserve source text; decimal amounts must stay strings)"
          },
          "source": {
            "type": "string",
            "maxLength": 131072,
            "description": "Source (preserve source text; decimal amounts must stay strings)"
          },
          "license": {
            "type": "string",
            "maxLength": 131072,
            "description": "License (preserve source text; decimal amounts must stay strings)"
          },
          "allowedUses": {
            "type": "string",
            "maxLength": 131072,
            "description": "Allowed Uses (preserve source text; decimal amounts must stay strings)"
          },
          "regions": {
            "type": "string",
            "maxLength": 131072,
            "description": "Regions (preserve source text; decimal amounts must stay strings)"
          },
          "expires": {
            "type": "string",
            "maxLength": 131072,
            "description": "Expires (preserve source text; decimal amounts must stay strings)"
          },
          "personalData": {
            "type": "boolean",
            "description": "Contains personal data"
          },
          "consent": {
            "type": "string",
            "enum": [
              "recorded",
              "unknown",
              "not-required"
            ],
            "description": "Consent (preserve source text; decimal amounts must stay strings)"
          },
          "revoked": {
            "type": "boolean",
            "description": "Revoked"
          },
          "shareBps": {
            "type": "number",
            "description": "Revenue share (basis points; 10,000 = 100%)"
          }
        },
        "required": [
          "id",
          "source",
          "license",
          "allowedUses",
          "regions",
          "expires",
          "personalData",
          "consent",
          "revoked",
          "shareBps"
        ],
        "additionalProperties": false,
        "description": "Exact record structure; the engine additionally checks bounds, dates, identifiers and cross-field constraints."
      },
      "description": "Datasets"
    }
  },
  "required": [
    "use",
    "region",
    "asOf",
    "currency",
    "receivedRevenue",
    "datasets"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "description": "Exact record structure; the engine additionally checks bounds, dates, identifiers and cross-field constraints."
}

Output Schema

{
  "type": "object",
  "properties": {
    "toolId": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "revision": {
      "type": "string"
    },
    "processing": {
      "type": "string"
    },
    "evidenceStatus": {
      "type": "string"
    },
    "citation": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "url": {
          "type": "string"
        },
        "methodUrl": {
          "type": "string"
        },
        "reviewedAt": {
          "type": "string"
        },
        "scope": {
          "type": "string"
        }
      },
      "required": [
        "title",
        "url",
        "methodUrl",
        "reviewedAt",
        "scope"
      ],
      "additionalProperties": false
    },
    "officialReferences": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "relationship": {
            "type": "string"
          }
        },
        "required": [
          "title",
          "url",
          "relationship"
        ],
        "additionalProperties": false
      }
    },
    "limitations": {
      "type": "string"
    },
    "report": {
      "type": "object",
      "properties": {
        "version": {
          "type": "string"
        },
        "title": {
          "type": "string"
        },
        "summary": {
          "type": "string"
        },
        "metrics": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "label": {
                "type": "string"
              },
              "value": {
                "type": [
                  "string",
                  "number"
                ]
              }
            },
            "required": [
              "label",
              "value"
            ],
            "additionalProperties": false
          }
        },
        "tables": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "title": {
                "type": "string"
              },
              "columns": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "rows": {
                "type": "array",
                "items": {
                  "type": "array",
                  "items": {
                    "type": [
                      "string",
                      "number",
                      "boolean",
                      "null"
                    ]
                  }
                }
              }
            },
            "required": [
              "title",
              "columns",
              "rows"
            ],
            "additionalProperties": false
          }
        },
        "notes": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "data": {}
      },
      "required": [
        "version",
        "title",
        "summary",
        "metrics",
        "tables",
        "notes",
        "data"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "toolId",
    "version",
    "revision",
    "processing",
    "evidenceStatus",
    "citation",
    "officialReferences",
    "limitations",
    "report"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false
}
🟒compare_compute_costs(workload, model, currency, minimumPassRate, runs)

Compute Lens compares measured workload runs using total entered compute, setup, storage and egress costs per accepted output. It filters mismatched workload labels, currencies, quality and memory limits. All examples are fictional; no live GPU quotes are supplied. No live GPU inventory, automatic benchmarking, reservation, infrastructure management or verified savings. Retrieve compute with fetch or read its example resource to obtain exact inputs. Parameters are processed remotely without application persistence.

Input Schema

{
  "type": "object",
  "properties": {
    "workload": {
      "type": "string",
      "maxLength": 131072,
      "description": "Workload (preserve source text; decimal amounts must stay strings)"
    },
    "model": {
      "type": "string",
      "maxLength": 131072,
      "description": "Model (preserve source text; decimal amounts must stay strings)"
    },
    "currency": {
      "type": "string",
      "maxLength": 131072,
      "description": "Currency (preserve source text; decimal amounts must stay strings)"
    },
    "minimumPassRate": {
      "type": "number",
      "description": "Minimum accepted fraction (0–1)"
    },
    "runs": {
      "maxItems": 200,
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "maxLength": 131072,
            "description": "Record ID (preserve source text; decimal amounts must stay strings)"
          },
          "provider": {
            "type": "string",
            "maxLength": 131072,
            "description": "Provider (preserve source text; decimal amounts must stay strings)"
          },
          "workload": {
            "type": "string",
            "maxLength": 131072,
            "description": "Workload (preserve source text; decimal amounts must stay strings)"
          },
          "model": {
            "type": "string",
            "maxLength": 131072,
            "description": "Model (preserve source text; decimal amounts must stay strings)"
          },
          "currency": {
            "type": "string",
            "maxLength": 131072,
            "description": "Currency (preserve source text; decimal amounts must stay strings)"
          },
          "hourlyCost": {
            "type": "string",
            "maxLength": 131072,
            "description": "Hourly compute rate (preserve source text; decimal amounts must stay strings)"
          },
          "setupSeconds": {
            "type": "number",
            "description": "Setup Seconds"
          },
          "runSeconds": {
            "type": "number",
            "description": "Run Seconds"
          },
          "storageCost": {
            "type": "string",
            "maxLength": 131072,
            "description": "Storage Cost (preserve source text; decimal amounts must stay strings)"
          },
          "egressCost": {
            "type": "string",
            "maxLength": 131072,
            "description": "Egress Cost (preserve source text; decimal amounts must stay strings)"
          },
          "accepted": {
            "type": "number",
            "description": "Accepted"
          },
          "attempts": {
            "type": "number",
            "description": "Attempts"
          },
          "memoryGB": {
            "type": "number",
            "description": "Required memory (GB)"
          },
          "availableMemoryGB": {
            "type": "number",
            "description": "Available memory (GB)"
          }
        },
        "required": [
          "id",
          "provider",
          "workload",
          "model",
          "currency",
          "hourlyCost",
          "setupSeconds",
          "runSeconds",
          "storageCost",
          "egressCost",
          "accepted",
          "attempts",
          "memoryGB",
          "availableMemoryGB"
        ],
        "additionalProperties": false,
        "description": "Exact record structure; the engine additionally checks bounds, dates, identifiers and cross-field constraints."
      },
      "description": "Runs"
    }
  },
  "required": [
    "workload",
    "model",
    "currency",
    "minimumPassRate",
    "runs"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "description": "Exact record structure; the engine additionally checks bounds, dates, identifiers and cross-field constraints."
}

Output Schema

{
  "type": "object",
  "properties": {
    "toolId": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "revision": {
      "type": "string"
    },
    "processing": {
      "type": "string"
    },
    "evidenceStatus": {
      "type": "string"
    },
    "citation": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "url": {
          "type": "string"
        },
        "methodUrl": {
          "type": "string"
        },
        "reviewedAt": {
          "type": "string"
        },
        "scope": {
          "type": "string"
        }
      },
      "required": [
        "title",
        "url",
        "methodUrl",
        "reviewedAt",
        "scope"
      ],
      "additionalProperties": false
    },
    "officialReferences": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "relationship": {
            "type": "string"
          }
        },
        "required": [
          "title",
          "url",
          "relationship"
        ],
        "additionalProperties": false
      }
    },
    "limitations": {
      "type": "string"
    },
    "report": {
      "type": "object",
      "properties": {
        "version": {
          "type": "string"
        },
        "title": {
          "type": "string"
        },
        "summary": {
          "type": "string"
        },
        "metrics": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "label": {
                "type": "string"
              },
              "value": {
                "type": [
                  "string",
                  "number"
                ]
              }
            },
            "required": [
              "label",
              "value"
            ],
            "additionalProperties": false
          }
        },
        "tables": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "title": {
                "type": "string"
              },
              "columns": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "rows": {
                "type": "array",
                "items": {
                  "type": "array",
                  "items": {
                    "type": [
                      "string",
                      "number",
                      "boolean",
                      "null"
                    ]
                  }
                }
              }
            },
            "required": [
              "title",
              "columns",
              "rows"
            ],
            "additionalProperties": false
          }
        },
        "notes": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "data": {}
      },
      "required": [
        "version",
        "title",
        "summary",
        "metrics",
        "tables",
        "notes",
        "data"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "toolId",
    "version",
    "revision",
    "processing",
    "evidenceStatus",
    "citation",
    "officialReferences",
    "limitations",
    "report"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false
}
🟒model_contributor_rewards(currency, customerRevenue, tokenSubsidy, computeCost, reviewCost, ...)

Incentive Lab separates customer revenue from token subsidy, then allocates a declared reward budget using accepted work and quality weights. Contributor caps and exact budget conservation keep the scenario inspectable. The worksheet does not establish Sybil resistance or distribute tokens. No live subnet data, fraud detection, Bittensor emission replication, staking recommendation or token distribution. Retrieve incentives with fetch or read its example resource to obtain exact inputs. Parameters are processed remotely without application persistence.

Input Schema

{
  "type": "object",
  "properties": {
    "currency": {
      "type": "string",
      "maxLength": 131072,
      "description": "Currency (preserve source text; decimal amounts must stay strings)"
    },
    "customerRevenue": {
      "type": "string",
      "maxLength": 131072,
      "description": "Customer Revenue (preserve source text; decimal amounts must stay strings)"
    },
    "tokenSubsidy": {
      "type": "string",
      "maxLength": 131072,
      "description": "Token Subsidy (preserve source text; decimal amounts must stay strings)"
    },
    "computeCost": {
      "type": "string",
      "maxLength": 131072,
      "description": "Compute Cost (preserve source text; decimal amounts must stay strings)"
    },
    "reviewCost": {
      "type": "string",
      "maxLength": 131072,
      "description": "Review Cost (preserve source text; decimal amounts must stay strings)"
    },
    "otherCost": {
      "type": "string",
      "maxLength": 131072,
      "description": "Other Cost (preserve source text; decimal amounts must stay strings)"
    },
    "budget": {
      "type": "string",
      "maxLength": 131072,
      "description": "Total budget (preserve source text; decimal amounts must stay strings)"
    },
    "capPercent": {
      "type": "number",
      "description": "Maximum contributor share (%)"
    },
    "contributors": {
      "maxItems": 200,
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "maxLength": 131072,
            "description": "Record ID (preserve source text; decimal amounts must stay strings)"
          },
          "acceptedTasks": {
            "type": "number",
            "description": "Accepted Tasks"
          },
          "quality": {
            "type": "number",
            "description": "Quality factor (0–1)"
          },
          "independent": {
            "type": "boolean",
            "description": "Independent evidence declared"
          }
        },
        "required": [
          "id",
          "acceptedTasks",
          "quality",
          "independent"
        ],
        "additionalProperties": false,
        "description": "Exact record structure; the engine additionally checks bounds, dates, identifiers and cross-field constraints."
      },
      "description": "Contributors"
    }
  },
  "required": [
    "currency",
    "customerRevenue",
    "tokenSubsidy",
    "computeCost",
    "reviewCost",
    "otherCost",
    "budget",
    "capPercent",
    "contributors"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "description": "Exact record structure; the engine additionally checks bounds, dates, identifiers and cross-field constraints."
}

Output Schema

{
  "type": "object",
  "properties": {
    "toolId": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "revision": {
      "type": "string"
    },
    "processing": {
      "type": "string"
    },
    "evidenceStatus": {
      "type": "string"
    },
    "citation": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "url": {
          "type": "string"
        },
        "methodUrl": {
          "type": "string"
        },
        "reviewedAt": {
          "type": "string"
        },
        "scope": {
          "type": "string"
        }
      },
      "required": [
        "title",
        "url",
        "methodUrl",
        "reviewedAt",
        "scope"
      ],
      "additionalProperties": false
    },
    "officialReferences": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "relationship": {
            "type": "string"
          }
        },
        "required": [
          "title",
          "url",
          "relationship"
        ],
        "additionalProperties": false
      }
    },
    "limitations": {
      "type": "string"
    },
    "report": {
      "type": "object",
      "properties": {
        "version": {
          "type": "string"
        },
        "title": {
          "type": "string"
        },
        "summary": {
          "type": "string"
        },
        "metrics": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "label": {
                "type": "string"
              },
              "value": {
                "type": [
                  "string",
                  "number"
                ]
              }
            },
            "required": [
              "label",
              "value"
            ],
            "additionalProperties": false
          }
        },
        "tables": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "title": {
                "type": "string"
              },
              "columns": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "rows": {
                "type": "array",
                "items": {
                  "type": "array",
                  "items": {
                    "type": [
                      "string",
                      "number",
                      "boolean",
                      "null"
                    ]
                  }
                }
              }
            },
            "required": [
              "title",
              "columns",
              "rows"
            ],
            "additionalProperties": false
          }
        },
        "notes": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "data": {}
      },
      "required": [
        "version",
        "title",
        "summary",
        "metrics",
        "tables",
        "notes",
        "data"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "toolId",
    "version",
    "revision",
    "processing",
    "evidenceStatus",
    "citation",
    "officialReferences",
    "limitations",
    "report"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false
}
🟒plan_zkml_costs(statement, modelHash, inputHash, verificationKeyHash, verifierVersion, ...)

Proof Plan estimates proving compute and onchain verification costs from your own measurements. It checks a per-job latency target and preserves model, input and verification-key hashes. It plans an integration; it does not generate or verify a zero-knowledge proof. No ZK proof generation or cryptographic verification. File hashing verifies bytes only; it is not proof of model correctness. Retrieve proof with fetch or read its example resource to obtain exact inputs. Parameters are processed remotely without application persistence.

Input Schema

{
  "type": "object",
  "properties": {
    "statement": {
      "type": "string",
      "maxLength": 131072,
      "description": "Statement (preserve source text; decimal amounts must stay strings)"
    },
    "modelHash": {
      "type": "string",
      "maxLength": 131072,
      "description": "Model Hash (preserve source text; decimal amounts must stay strings)"
    },
    "inputHash": {
      "type": "string",
      "maxLength": 131072,
      "description": "Input Hash (preserve source text; decimal amounts must stay strings)"
    },
    "verificationKeyHash": {
      "type": "string",
      "maxLength": 131072,
      "description": "Verification Key Hash (preserve source text; decimal amounts must stay strings)"
    },
    "verifierVersion": {
      "type": "string",
      "maxLength": 131072,
      "description": "Verifier Version (preserve source text; decimal amounts must stay strings)"
    },
    "jobs": {
      "type": "number",
      "description": "Jobs"
    },
    "proveSeconds": {
      "type": "number",
      "description": "Proving time (seconds)"
    },
    "verifyMs": {
      "type": "number",
      "description": "Verification time (ms)"
    },
    "proofBytes": {
      "type": "number",
      "description": "Proof size (bytes)"
    },
    "gasPerVerify": {
      "type": "number",
      "description": "Gas per verification"
    },
    "gasPriceGwei": {
      "type": "number",
      "description": "Gas Price Gwei"
    },
    "nativePriceUsd": {
      "type": "number",
      "description": "Native token price (USD)"
    },
    "computeHourlyUsd": {
      "type": "number",
      "description": "Proving compute (USD/hour)"
    },
    "budgetUsd": {
      "type": "number",
      "description": "Budget (USD)"
    },
    "latencySlaSeconds": {
      "type": "number",
      "description": "Latency target (seconds)"
    }
  },
  "required": [
    "statement",
    "modelHash",
    "inputHash",
    "verificationKeyHash",
    "verifierVersion",
    "jobs",
    "proveSeconds",
    "verifyMs",
    "proofBytes",
    "gasPerVerify",
    "gasPriceGwei",
    "nativePriceUsd",
    "computeHourlyUsd",
    "budgetUsd",
    "latencySlaSeconds"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "description": "Exact record structure; the engine additionally checks bounds, dates, identifiers and cross-field constraints."
}

Output Schema

{
  "type": "object",
  "properties": {
    "toolId": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "revision": {
      "type": "string"
    },
    "processing": {
      "type": "string"
    },
    "evidenceStatus": {
      "type": "string"
    },
    "citation": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "url": {
          "type": "string"
        },
        "methodUrl": {
          "type": "string"
        },
        "reviewedAt": {
          "type": "string"
        },
        "scope": {
          "type": "string"
        }
      },
      "required": [
        "title",
        "url",
        "methodUrl",
        "reviewedAt",
        "scope"
      ],
      "additionalProperties": false
    },
    "officialReferences": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "relationship": {
            "type": "string"
          }
        },
        "required": [
          "title",
          "url",
          "relationship"
        ],
        "additionalProperties": false
      }
    },
    "limitations": {
      "type": "string"
    },
    "report": {
      "type": "object",
      "properties": {
        "version": {
          "type": "string"
        },
        "title": {
          "type": "string"
        },
        "summary": {
          "type": "string"
        },
        "metrics": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "label": {
                "type": "string"
              },
              "value": {
                "type": [
                  "string",
                  "number"
                ]
              }
            },
            "required": [
              "label",
              "value"
            ],
            "additionalProperties": false
          }
        },
        "tables": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "title": {
                "type": "string"
              },
              "columns": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "rows": {
                "type": "array",
                "items": {
                  "type": "array",
                  "items": {
                    "type": [
                      "string",
                      "number",
                      "boolean",
                      "null"
                    ]
                  }
                }
              }
            },
            "required": [
              "title",
              "columns",
              "rows"
            ],
            "additionalProperties": false
          }
        },
        "notes": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "data": {}
      },
      "required": [
        "version",
        "title",
        "summary",
        "metrics",
        "tables",
        "notes",
        "data"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "toolId",
    "version",
    "revision",
    "processing",
    "evidenceStatus",
    "citation",
    "officialReferences",
    "limitations",
    "report"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false
}
🟒decode_token_call(network, tokenStandard, to, data, nativeValueAtomic, ...)

Call Lens decodes supported token-call shapes locally and compares the recipient, spender and atomic amount with your expectations. It distinguishes ERC-20 allowances from ERC-721 token IDs using the declared standard. It never connects a wallet or evaluates contract safety. No chain simulation, malicious-contract detection, token identity lookup, balance inspection or safety verdict. Retrieve calls with fetch or read its example resource to obtain exact inputs. Parameters are processed remotely without application persistence.

Input Schema

{
  "type": "object",
  "properties": {
    "network": {
      "type": "string",
      "maxLength": 131072,
      "description": "Network (preserve source text; decimal amounts must stay strings)"
    },
    "tokenStandard": {
      "type": "string",
      "enum": [
        "ERC-20",
        "ERC-721",
        "ERC-1155"
      ],
      "description": "Token Standard (preserve source text; decimal amounts must stay strings)"
    },
    "to": {
      "type": "string",
      "maxLength": 131072,
      "description": "Target contract (preserve source text; decimal amounts must stay strings)"
    },
    "data": {
      "type": "string",
      "maxLength": 131072,
      "description": "Hex calldata (preserve source text; decimal amounts must stay strings)"
    },
    "nativeValueAtomic": {
      "type": "string",
      "maxLength": 131072,
      "description": "Native value (atomic units) (preserve source text; decimal amounts must stay strings)"
    },
    "expectedRecipient": {
      "type": "string",
      "maxLength": 131072,
      "description": "Expected recipient / spender (preserve source text; decimal amounts must stay strings)"
    },
    "maxAtomicAmount": {
      "type": "string",
      "maxLength": 131072,
      "description": "Amount limit (atomic units) (preserve source text; decimal amounts must stay strings)"
    }
  },
  "required": [
    "network",
    "tokenStandard",
    "to",
    "data",
    "nativeValueAtomic",
    "expectedRecipient",
    "maxAtomicAmount"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "description": "Exact record structure; the engine additionally checks bounds, dates, identifiers and cross-field constraints."
}

Output Schema

{
  "type": "object",
  "properties": {
    "toolId": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "revision": {
      "type": "string"
    },
    "processing": {
      "type": "string"
    },
    "evidenceStatus": {
      "type": "string"
    },
    "citation": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "url": {
          "type": "string"
        },
        "methodUrl": {
          "type": "string"
        },
        "reviewedAt": {
          "type": "string"
        },
        "scope": {
          "type": "string"
        }
      },
      "required": [
        "title",
        "url",
        "methodUrl",
        "reviewedAt",
        "scope"
      ],
      "additionalProperties": false
    },
    "officialReferences": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "relationship": {
            "type": "string"
          }
        },
        "required": [
          "title",
          "url",
          "relationship"
        ],
        "additionalProperties": false
      }
    },
    "limitations": {
      "type": "string"
    },
    "report": {
      "type": "object",
      "properties": {
        "version": {
          "type": "string"
        },
        "title": {
          "type": "string"
        },
        "summary": {
          "type": "string"
        },
        "metrics": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "label": {
                "type": "string"
              },
              "value": {
                "type": [
                  "string",
                  "number"
                ]
              }
            },
            "required": [
              "label",
              "value"
            ],
            "additionalProperties": false
          }
        },
        "tables": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "title": {
                "type": "string"
              },
              "columns": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "rows": {
                "type": "array",
                "items": {
                  "type": "array",
                  "items": {
                    "type": [
                      "string",
                      "number",
                      "boolean",
                      "null"
                    ]
                  }
                }
              }
            },
            "required": [
              "title",
              "columns",
              "rows"
            ],
            "additionalProperties": false
          }
        },
        "notes": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "data": {}
      },
      "required": [
        "version",
        "title",
        "summary",
        "metrics",
        "tables",
        "notes",
        "data"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "toolId",
    "version",
    "revision",
    "processing",
    "evidenceStatus",
    "citation",
    "officialReferences",
    "limitations",
    "report"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false
}
🟒compare_rwa_disclosures(asOf, maxAgeDays, before, after)

RWA Notes compares two sets of supplied asset disclosure fields while retaining units, dates and source references. It flags missing values and incompatible comparisons. It does not verify reserves, issuer solvency or redemption rights. No live asset feed, reserve audit, redemption verification, credit rating or investment recommendation. Retrieve disclosures with fetch or read its example resource to obtain exact inputs. Parameters are processed remotely without application persistence.

Input Schema

{
  "type": "object",
  "properties": {
    "asOf": {
      "type": "string",
      "maxLength": 131072,
      "description": "Review date (UTC) (preserve source text; decimal amounts must stay strings)"
    },
    "maxAgeDays": {
      "type": "number",
      "description": "Maximum evidence age (days)"
    },
    "before": {
      "maxItems": 200,
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "asset": {
            "type": "string",
            "maxLength": 131072,
            "description": "Asset (preserve source text; decimal amounts must stay strings)"
          },
          "field": {
            "type": "string",
            "maxLength": 131072,
            "description": "Field (preserve source text; decimal amounts must stay strings)"
          },
          "value": {
            "type": "string",
            "maxLength": 131072,
            "description": "Value (preserve source text; decimal amounts must stay strings)"
          },
          "unit": {
            "type": "string",
            "maxLength": 131072,
            "description": "Unit (preserve source text; decimal amounts must stay strings)"
          },
          "date": {
            "type": "string",
            "maxLength": 131072,
            "description": "Date (preserve source text; decimal amounts must stay strings)"
          },
          "source": {
            "type": "string",
            "maxLength": 131072,
            "description": "Source (preserve source text; decimal amounts must stay strings)"
          }
        },
        "required": [
          "asset",
          "field",
          "value",
          "unit",
          "date",
          "source"
        ],
        "additionalProperties": false,
        "description": "Exact record structure; the engine additionally checks bounds, dates, identifiers and cross-field constraints."
      },
      "description": "Before"
    },
    "after": {
      "maxItems": 200,
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "asset": {
            "type": "string",
            "maxLength": 131072,
            "description": "Asset (preserve source text; decimal amounts must stay strings)"
          },
          "field": {
            "type": "string",
            "maxLength": 131072,
            "description": "Field (preserve source text; decimal amounts must stay strings)"
          },
          "value": {
            "type": "string",
            "maxLength": 131072,
            "description": "Value (preserve source text; decimal amounts must stay strings)"
          },
          "unit": {
            "type": "string",
            "maxLength": 131072,
            "description": "Unit (preserve source text; decimal amounts must stay strings)"
          },
          "date": {
            "type": "string",
            "maxLength": 131072,
            "description": "Date (preserve source text; decimal amounts must stay strings)"
          },
          "source": {
            "type": "string",
            "maxLength": 131072,
            "description": "Source (preserve source text; decimal amounts must stay strings)"
          }
        },
        "required": [
          "asset",
          "field",
          "value",
          "unit",
          "date",
          "source"
        ],
        "additionalProperties": false,
        "description": "Exact record structure; the engine additionally checks bounds, dates, identifiers and cross-field constraints."
      },
      "description": "After"
    }
  },
  "required": [
    "asOf",
    "maxAgeDays",
    "before",
    "after"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "description": "Exact record structure; the engine additionally checks bounds, dates, identifiers and cross-field constraints."
}

Output Schema

{
  "type": "object",
  "properties": {
    "toolId": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "revision": {
      "type": "string"
    },
    "processing": {
      "type": "string"
    },
    "evidenceStatus": {
      "type": "string"
    },
    "citation": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "url": {
          "type": "string"
        },
        "methodUrl": {
          "type": "string"
        },
        "reviewedAt": {
          "type": "string"
        },
        "scope": {
          "type": "string"
        }
      },
      "required": [
        "title",
        "url",
        "methodUrl",
        "reviewedAt",
        "scope"
      ],
      "additionalProperties": false
    },
    "officialReferences": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "relationship": {
            "type": "string"
          }
        },
        "required": [
          "title",
          "url",
          "relationship"
        ],
        "additionalProperties": false
      }
    },
    "limitations": {
      "type": "string"
    },
    "report": {
      "type": "object",
      "properties": {
        "version": {
          "type": "string"
        },
        "title": {
          "type": "string"
        },
        "summary": {
          "type": "string"
        },
        "metrics": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "label": {
                "type": "string"
              },
              "value": {
                "type": [
                  "string",
                  "number"
                ]
              }
            },
            "required": [
              "label",
              "value"
            ],
            "additionalProperties": false
          }
        },
        "tables": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "title": {
                "type": "string"
              },
              "columns": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "rows": {
                "type": "array",
                "items": {
                  "type": "array",
                  "items": {
                    "type": [
                      "string",
                      "number",
                      "boolean",
                      "null"
                    ]
                  }
                }
              }
            },
            "required": [
              "title",
              "columns",
              "rows"
            ],
            "additionalProperties": false
          }
        },
        "notes": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "data": {}
      },
      "required": [
        "version",
        "title",
        "summary",
        "metrics",
        "tables",
        "notes",
        "data"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "toolId",
    "version",
    "revision",
    "processing",
    "evidenceStatus",
    "citation",
    "officialReferences",
    "limitations",
    "report"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false
}

Community

Rate this Server

Evidence

Recent observations

verifiedversion not recorded12 tools