{
    "$schema": "https://webmcp.org",
    "name": "AKADATA Public Site",
    "description": "Structured, read-only access to public AKADATA pages and site search.",
    "version": "1.0.0",
    "endpoint": "https://www.akadata.ltd/mcp",
    "transport": "streamable-http",
    "auth": {
        "type": "none",
        "description": "The current public read-only tools do not require an account or API key."
    },
    "privacy": {
        "tools_are_read_only": true,
        "personal_account_data_exposed": false,
        "form_submission_exposed": false
    },
    "docs_url": "https://www.akadata.ltd/projects/mcp-server",
    "tools": [
        {
            "name": "list_public_pages",
            "description": "List the clean public page URLs in the AKADATA sitemap.",
            "inputSchema": {
                "type": "object",
                "properties": {},
                "additionalProperties": false
            },
            "auth": "none"
        },
        {
            "name": "search_public_site",
            "description": "Search public AKADATA page titles and descriptions.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "query": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 200
                    }
                },
                "required": [
                    "query"
                ],
                "additionalProperties": false
            },
            "auth": "none"
        },
        {
            "name": "read_public_page",
            "description": "Read a clean public AKADATA page path as Markdown.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "path": {
                        "type": "string",
                        "pattern": "^/"
                    }
                },
                "required": [
                    "path"
                ],
                "additionalProperties": false
            },
            "auth": "none"
        }
    ]
}
