{
  "serverInfo": {
    "name": "agentshop",
    "version": "1.0.0"
  },
  "authentication": {
    "required": false
  },
  "tools": [
    {
      "name": "search_reports",
      "description": "Search the report catalog by keyword. Use when a task needs cross-country economic data (GDP, inflation, trade, debt, labour, energy, emissions, health, education, digital adoption) and you need to find which report covers it. Returns matching report ids with price, indicators, economies and a free preview URL.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Keyword query, e.g. \"inflation\", \"renewable energy\", \"2024 economy\"."
          },
          "limit": {
            "type": "integer",
            "description": "Maximum results to return (default 10).",
            "minimum": 1,
            "maximum": 50
          }
        },
        "required": [
          "query"
        ]
      }
    },
    {
      "name": "list_catalog",
      "description": "List buyable reports with live prices. Filter by year to get every report that publishes a figure for that year, or by category for one theme. Use before choosing a purchase.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "year": {
            "type": "integer",
            "description": "Only reports whose year window contains this year."
          },
          "category": {
            "type": "string",
            "description": "One of the catalog categories.",
            "enum": [
              "agriculture",
              "annual",
              "defense",
              "demographics",
              "digital",
              "education",
              "energy",
              "environment",
              "finance",
              "fiscal",
              "health",
              "innovation",
              "investment",
              "labor",
              "macro",
              "output",
              "prices",
              "regional",
              "society",
              "structure",
              "trade"
            ]
          }
        }
      }
    },
    {
      "name": "list_years",
      "description": "Return every published year with the number of reports covering it and the annual edition (yearbook) themed on it. Use when the question names a year.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "preview_report",
      "description": "Fetch the free machine-readable cross-section for one report: the latest year for every economy, the exact field names and types the paid payload uses, and what the purchase adds. No payment. Use this to verify coverage before paying.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Report id, e.g. \"macro-inflation\" or \"yearbook-2024\"."
          }
        },
        "required": [
          "id"
        ]
      }
    },
    {
      "name": "report_payment_requirements",
      "description": "Return the exact x402 payment requirements for a paid report: amount, asset, network, payTo, scheme and the endpoint to replay after signing. Nothing is charged by calling this.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Report id, or \"bundle\"."
          }
        },
        "required": [
          "id"
        ]
      }
    },
    {
      "name": "buy_report",
      "description": "Return the delivery URL and the payment requirements for a paid report so the calling runtime can sign a payment and fetch it. This tool does not move funds.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Report id, or \"bundle\"."
          },
          "format": {
            "type": "string",
            "description": "Delivery format.",
            "enum": [
              "html",
              "json",
              "csv",
              "summary-csv"
            ]
          }
        },
        "required": [
          "id"
        ]
      }
    }
  ],
  "resources": [],
  "prompts": [],
  "_meta": {
    "transport": {
      "type": "streamable-http",
      "url": "https://reportbazaar.app.workbuddy.host/mcp"
    },
    "websiteUrl": "https://reportbazaar.app.workbuddy.host/",
    "documentationUrl": "https://reportbazaar.app.workbuddy.host/llms.txt",
    "fullTextUrl": "https://reportbazaar.app.workbuddy.host/llms-full.txt",
    "descriptorUrl": "https://reportbazaar.app.workbuddy.host/.well-known/mcp.json",
    "payment": {
      "protocol": "x402",
      "scheme": "exact",
      "network": "eip155:8453",
      "asset": "USDC",
      "payTo": "0xba7efeabfab91a6febc8d8088faa29ce95979b34",
      "facilitator": "https://facilitator.payai.network"
    },
    "freeTools": [
      "search_reports",
      "list_catalog",
      "list_years",
      "preview_report",
      "report_payment_requirements"
    ],
    "paidTools": [
      "buy_report"
    ]
  }
}