{
  "$schema": "https://static.modelcontextprotocol.io/schemas/mcp-server-card/v1.json",
  "version": "1.0",
  "protocolVersion": "2025-06-18",
  "serverInfo": {
    "name": "parla-homepage-webmcp",
    "title": "Parla Homepage WebMCP",
    "version": "1.0.0"
  },
  "description": "Browser-side tools exposed by the Parla homepage for agent discovery and navigation.",
  "documentationUrl": "https://parlaapp.com/docs/api/",
  "transport": {
    "type": "webmcp",
    "endpoint": "https://parlaapp.com/"
  },
  "capabilities": {
    "tools": {
      "listChanged": false
    }
  },
  "authentication": {
    "required": false,
    "schemes": []
  },
  "tools": [
    {
      "name": "parla.get_page_summary",
      "title": "Get Page Summary",
      "description": "Return a concise summary of the Parla homepage, its tracks, and its calls to action.",
      "inputSchema": {
        "type": "object",
        "additionalProperties": false,
        "properties": {}
      }
    },
    {
      "name": "parla.scroll_to_section",
      "title": "Scroll To Section",
      "description": "Scroll the page to a named section such as overview, tracks, growth, or download.",
      "inputSchema": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "section": {
            "type": "string",
            "enum": [
              "overview",
              "tracks",
              "growth",
              "download"
            ]
          }
        },
        "required": [
          "section"
        ]
      }
    },
    {
      "name": "parla.get_download_link",
      "title": "Get Download Link",
      "description": "Return the App Store download link for Parla.",
      "inputSchema": {
        "type": "object",
        "additionalProperties": false,
        "properties": {}
      }
    }
  ]
}
