Revuo

tools.changes

Detect whether a product's MCP tool schema has DRIFTED since you cached it — rug-pull / tool-poisoning detection (a server silently changing a tool's description or input schema after you approved it; web search structurally cannot answer this). Pass the product slug and EITHER the schema hash you cached earlier (knownHash, from products.get_mcp_setup → server.schema.hash — the strongest signal: an exact mismatch means the tools changed) OR the ISO-8601 timestamp you cached at (since). With neither, it returns the current fingerprint to cache for next time. A product may expose MULTIPLE servers: knownHash is per-server, so pass `server` (a qualifiedName) with knownHash on a multi-server product — otherwise knownHash is applied only when there's exactly one server. Re-verify before trusting a previously-approved tool. Response: { product, hasMcpSupport, drifted (did ANY tracked server change vs your reference; null when no reference given), servers[] (each: qualifiedName, currentSchemaHash, schemaStable, lastSchemaChangeAt, toolCount, directlyProbed, driftedSinceKnownHash, driftedSince, advice) }. Errors: { error: { code: 'not_found'|'bad_input', ... } }.

Remote revuo:revuo

Remote (network-hosted)

Other tools also called tools.changes? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "slug": {
      "description": "Product slug whose MCP tool schema to check.",
      "type": "string"
    },
    "knownHash": {
      "description": "The schema hash you cached earlier (products.get_mcp_setup → server.schema.hash). Exact-mismatch drift signal.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "server": {
      "description": "The server qualifiedName your knownHash belongs to. Required with knownHash on a multi-server product.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "since": {
      "description": "ISO-8601 timestamp you last cached at. Reports whether a schema change was recorded after it.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  },
  "required": [
    "slug"
  ]
}
          

Provider

Revuo →