/docs/mcp

model_context_protocol · tool

aeo_fix

Generate ready-to-use fix code for a URL based on its AEO scan results. Returns llms.txt content, robots.txt additions, JSON-LD schema markup, and meta tag suggestions.

Input schema

{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "Target URL to generate fixes for"
    },
    "issues": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Optional issue IDs to fix from aeo_scan check IDs"
    }
  },
  "required": [
    "url"
  ]
}

JSON-RPC example

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

Related docs