/docs/mcp

model_context_protocol · tool

aeo_compare_competitors

Quick-scan a target URL and up to 5 competitor URLs, returning score deltas and checks competitors pass while the target fails.

Input schema

{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "Target URL to benchmark"
    },
    "competitors": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "maxItems": 5,
      "description": "Competitor URLs to scan, capped at 5"
    }
  },
  "required": [
    "url",
    "competitors"
  ]
}

JSON-RPC example

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "aeo_compare_competitors",
    "arguments": {
      "url": "https://example.com",
      "competitors": [
        "https://competitor.example"
      ]
    }
  }
}

Related docs