{
  "name": "SGE-SCORE",
  "description": "AI-Readiness audit service. Scores landing pages against 57 Google-patent checkpoints, provides structured Master-Fixes for autonomous deployment, and exposes a searchable AI-native knowledge base of ~1500 schema.org references and SGE/GEO blog posts.",
  "url": "https://sge-score.com",
  "version": "1.1.0",
  "provider": {
    "organization": "SGE-SCORE",
    "url": "https://sge-score.com"
  },
  "documentationUrl": "https://sge-score.com/agents",
  "capabilities": {
    "streaming": false,
    "pushNotifications": false
  },
  "defaultInputModes": ["text"],
  "defaultOutputModes": ["text", "application/json"],
  "skills": [
    {
      "id": "audit_landing_page",
      "name": "Audit landing page for AI search readiness",
      "description": "Scrapes a URL and scores it against 57 Google-patent-derived checkpoints (max score 114). Returns per-sector breakdown AND the names of all failed checkpoints (without fix code). Free.",
      "tags": ["seo", "ai-search", "audit", "google-sge", "geo"],
      "examples": [
        "Audit https://example.com",
        "Score this page for AI search readiness: https://shop.example.com/product"
      ],
      "endpoint": "https://jhocisiphtyopyxrahgo.supabase.co/functions/v1/agent-analyze",
      "method": "POST",
      "inputSchema": {
        "type": "object",
        "required": ["url", "email"],
        "properties": {
          "url": { "type": "string", "format": "uri" },
          "email": { "type": "string", "format": "email" },
          "language": { "type": "string", "enum": ["en", "de", "es", "fr"], "default": "en" }
        }
      }
    },
    {
      "id": "purchase_master_fix",
      "name": "Purchase structured Master-Fix",
      "description": "After a completed audit, purchase a $9 Master-Fix that returns ready-to-deploy schema.org snippets, HTML rewrites, content edits, and agentic markup as a markdown-formatted JSON payload — one fix block per failed checkpoint.",
      "tags": ["commerce", "master-fix", "schema-org", "agentic"],
      "examples": [
        "Get the master fix for analysis abc-123",
        "Buy the $9 fix for my audit"
      ],
      "endpoint": "https://jhocisiphtyopyxrahgo.supabase.co/functions/v1/agent-checkout",
      "method": "POST",
      "pricing": { "amount": 9, "currency": "USD" }
    },
    {
      "id": "search_knowledge_base",
      "name": "Search SGE/GEO knowledge base",
      "description": "Full-text search across ~1500 schema.org reference entries and published SGE/GEO blog posts. Returns structured JSON with names, categories, descriptions, ready-to-use JSON-LD examples, and canonical URLs. Free, rate-limited.",
      "tags": ["knowledge", "schema-org", "geo", "research", "reference"],
      "examples": [
        "Search the knowledge base for 'product schema'",
        "Find references about FAQ structured data",
        "What does SGE-SCORE say about agentic markup?"
      ],
      "endpoint": "https://jhocisiphtyopyxrahgo.supabase.co/functions/v1/agent-knowledge-search",
      "method": "GET",
      "inputSchema": {
        "type": "object",
        "required": ["q"],
        "properties": {
          "q": { "type": "string", "description": "Search query (min 2 chars)" },
          "type": { "type": "string", "enum": ["all", "schema", "blog"], "default": "all" },
          "language": { "type": "string", "enum": ["en", "de", "es", "fr"], "default": "en" },
          "limit": { "type": "integer", "default": 10, "maximum": 25 }
        }
      }
    }
  ],
  "knowledge_resources": [
    {
      "name": "Schema.org Reference",
      "url": "https://sge-score.com/schema-reference",
      "description": "Curated reference of every schema.org type relevant to AI-native search, with JSON-LD examples.",
      "format": "html+jsonld",
      "machine_search": "https://jhocisiphtyopyxrahgo.supabase.co/functions/v1/agent-knowledge-search?q=<query>&type=schema"
    },
    {
      "name": "SGE / GEO Knowledge Base",
      "url": "https://sge-score.com/sge-geo-knowledge",
      "description": "AI-native reference library: ~1500 entries on Generative Engine Optimization, agentic commerce, semantic markup, and Google SGE patents.",
      "format": "html",
      "entries": 1500,
      "machine_search": "https://jhocisiphtyopyxrahgo.supabase.co/functions/v1/agent-knowledge-search?q=<query>"
    },
    {
      "name": "Blog / News",
      "url": "https://sge-score.com/news",
      "description": "Long-form articles on Google SGE patents, GEO strategy, and AI-search readiness.",
      "format": "html",
      "machine_search": "https://jhocisiphtyopyxrahgo.supabase.co/functions/v1/agent-knowledge-search?q=<query>&type=blog"
    },
    {
      "name": "Documentation",
      "url": "https://sge-score.com/docs",
      "description": "Platform documentation for SGE-SCORE.",
      "format": "html"
    }
  ],
  "rateLimits": {
    "audit_landing_page": "2 per 24h per email or IP",
    "search_knowledge_base": "30 per hour per IP"
  },
  "mcp": {
    "endpoint": "https://jhocisiphtyopyxrahgo.supabase.co/functions/v1/mcp",
    "transport": "streamable-http",
    "discovery": "https://sge-score.com/.well-known/mcp.json",
    "tools": ["audit_landing_page", "get_audit_status", "purchase_masterfix", "get_masterfix", "search_knowledge"]
  }
}
