{
    "protocol": "mcp",
    "protocolVersion": "2025-03-26",
    "server": {
        "name": "agent-disco",
        "version": "1.0.0",
        "description": "Discoverability scanner for AI-agent-friendly websites."
    },
    "capabilities": {
        "tools": {
            "listChanged": false
        },
        "resources": {
            "subscribe": false,
            "listChanged": false
        }
    },
    "tools": [
        {
            "name": "submit_scan",
            "description": "Submit a URL to be graded for AI-agent discoverability. Returns a scan id to poll.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "url": {
                        "type": "string",
                        "format": "uri",
                        "description": "Public URL of the site to scan."
                    }
                },
                "required": [
                    "url"
                ]
            }
        },
        {
            "name": "get_grade",
            "description": "Get the latest completed grade for a previously-scanned host.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "host": {
                        "type": "string",
                        "description": "Normalized hostname (e.g. example.com)."
                    }
                },
                "required": [
                    "host"
                ]
            }
        }
    ],
    "note": "These tools are currently exposed over plain HTTP at https://agentdisco.io/api/v1 \u2014 see https://agentdisco.io/api/docs for the OpenAPI UI. A native JSON-RPC MCP endpoint is on the roadmap; this descriptor advertises the capability set so MCP-aware agents can bridge to the HTTP surface."
}