{
  "name": "io.github.equinoxaifinance-rgb/fluxproof",
  "title": "FluxProof",
  "version": "0.1.0",
  "serverInfo": {
    "name": "FluxProof",
    "version": "0.1.0"
  },
  "description": "Evidence-bearing change monitoring for people and agents.",
  "authentication": {
    "required": false
  },
  "authenticationNote": "Discovery, offer and preflight are public. Monitor tools require a buyer-owned api_key argument; protect tool logs.",
  "transport": {
    "type": "streamable-http",
    "url": "https://fluxproof.neoaethel.workers.dev/mcp"
  },
  "tools": [
    {
      "name": "fluxproof_preflight",
      "description": "Fetch a public URL and return fetchability, size, final URL, title, and content hash without page content or payment.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string"
          }
        },
        "required": [
          "url"
        ],
        "additionalProperties": false
      }
    },
    {
      "name": "fluxproof_offer",
      "description": "Return free and paid boundaries and purchase routes without charging.",
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false
      }
    },
    {
      "name": "fluxproof_create_monitor",
      "description": "Create a monitor using a buyer-owned FluxProof API key.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "api_key": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "label": {
            "type": "string"
          },
          "interval_minutes": {
            "type": "integer"
          },
          "watch_terms": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "webhook_url": {
            "type": "string"
          }
        },
        "required": [
          "api_key",
          "url"
        ],
        "additionalProperties": false
      }
    },
    {
      "name": "fluxproof_check_now",
      "description": "Run a monitor now and return a source- and hash-bound change receipt.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "api_key": {
            "type": "string"
          },
          "monitor_id": {
            "type": "string"
          }
        },
        "required": [
          "api_key",
          "monitor_id"
        ],
        "additionalProperties": false
      }
    },
    {
      "name": "fluxproof_list_changes",
      "description": "List recent evidence receipts for a monitor.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "api_key": {
            "type": "string"
          },
          "monitor_id": {
            "type": "string"
          },
          "limit": {
            "type": "integer"
          }
        },
        "required": [
          "api_key",
          "monitor_id"
        ],
        "additionalProperties": false
      }
    }
  ],
  "resources": [],
  "prompts": []
}