1. Create a key

    Request access — once you’re approved, sign in and issue a key from your dashboard. The key is shown once — copy it somewhere safe.

    What you should see

    A new key in your dashboard list, with its secret shown exactly once.

  2. Connect over MCP or REST

    Agents: drop the server into Claude Desktop or Claude Code with the MCP config. Backends and scripts: hit the REST API with the same key.

    claude_desktop_config.json
    {
      "mcpServers": {
        "buyary": {
          "type": "http",
          "url": "https://services.buyary.com/mcp/",
          "headers": {
            "Authorization": "Bearer YOUR_BUYARY_KEY"
          }
        }
      }
    }
    What you should see

    Your client lists a buyary server exposing get_product_intelligence.

  3. Call it

    Ask your agent a buying question — “are the AirPods Pro 3 good for gaming?” — and it calls the tool on its own. Or test directly:

    terminal
    curl -s "https://services.buyary.com/v1/product-intelligence?product_name=iPhone%2017%20Pro%20Max" \
      -H "Authorization: Bearer YOUR_BUYARY_KEY"
    What you should see

    Structured JSON: a Buyary Score, verified claims, pricing with live offers, and per-source consensus.

That’s the whole integration. The docs cover both tools, the data model, and error semantics — and eligible purchases can participate in affiliate revenue sharing.