{
  "$schema": "https://static.modelcontextprotocol.io/schemas/mcp-server-card/v1.json",
  "version": "1.0",
  "protocolVersion": "2025-06-18",
  "serverInfo": {
    "name": "@aio-geo/mcp-server",
    "title": "AIO.GEO MCP Server",
    "version": "0.3.1"
  },
  "description": "AIO.GEO structural AI Search Readiness tools for Cursor and Claude. Audit, list fixes, dry-run apply, rescore, doctor, verify proof. We do not sell LLM rankings.",
  "transport": {
    "type": "stdio",
    "command": "npx",
    "args": ["-y", "@aio-geo/mcp-server"]
  },
  "authentication": {
    "required": false
  },
  "tools": [
    {
      "name": "aio_audit",
      "title": "Audit",
      "description": "Structural AI Search Readiness audit for a URL or domain.",
      "inputSchema": {
        "type": "object",
        "properties": { "url": { "type": "string" } },
        "required": ["url"]
      }
    },
    {
      "name": "list_fixes",
      "title": "List fixes",
      "description": "Ranked on-site fix pack (schema, robots, landmarks).",
      "inputSchema": {
        "type": "object",
        "properties": { "url": { "type": "string" } },
        "required": ["url"]
      }
    },
    {
      "name": "apply_fix",
      "title": "Apply fix",
      "description": "Generate a dry-run fix pack. Writes stay off unless explicitly enabled.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "url": { "type": "string" },
          "dryRun": { "type": "boolean", "default": true }
        },
        "required": ["url"]
      }
    },
    {
      "name": "rescore",
      "title": "Rescore",
      "description": "Fresh crawl and structural delta after a fix pack.",
      "inputSchema": {
        "type": "object",
        "properties": { "url": { "type": "string" } },
        "required": ["url"]
      }
    },
    {
      "name": "verify_proof",
      "title": "Verify proof",
      "description": "Verify an HMAC proof seal. Not an LLM ranking.",
      "inputSchema": {
        "type": "object",
        "properties": { "proof": { "type": "string" } }
      }
    },
    {
      "name": "doctor",
      "title": "Doctor",
      "description": "Environment health. No secrets in output.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    }
  ]
}
