{
  "$schema": "https://modelcontextprotocol.io/schema/server-card-v1",
  "name": "Astrant",
  "version": "0.0.1",
  "description": "Astrant: Agent Discoverability as a Service. Tools for AEO posture inspection, capability discovery, and audit booking.",
  "vendor": {
    "name": "Astrant",
    "url": "https://astrant.io"
  },
  "transports": [
    {
      "type": "streamable-http",
      "url": "/mcp"
    }
  ],
  "tools": [
    {
      "name": "get_capabilities",
      "description": "Returns the services Astrant offers — Score (free), Audit ($79), Implementation ($1,299), Custom (from $4,999), AutoPilot Subscription ($149/mo), Concierge Subscription ($899/mo) — as structured data for agents.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "get_pricing",
      "description": "Returns Astrant pricing for each service tier as structured data.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "get_case_studies",
      "description": "Returns Astrant client case studies and reference implementations.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "book_audit",
      "description": "Returns a checkout URL where the user can purchase the automated AEO Audit ($79, instant delivery).",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "check_llms_txt",
      "description": "Fetches the /llms.txt file at a given site URL and reports presence, HTTP status, first H1, blockquote summary, link count, and redirect status. Quick AEO posture check.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "Site URL to check"
          }
        },
        "required": [
          "url"
        ]
      }
    },
    {
      "name": "score_url",
      "description": "Returns the live Agent Discoverability Score for a given site URL — composite 0–100 score plus per-dimension breakdown across multiple dimensions of agent discoverability.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "Site URL to score"
          }
        },
        "required": [
          "url"
        ]
      }
    }
  ],
  "authentication": {
    "type": "none"
  }
}