{
  "schemaVersion": "2024-11-05",
  "serverInfo": {
    "name": "ScrollLaunch MCP",
    "version": "0.1.0",
    "vendor": "ScrollLaunch",
    "url": "https://www.scrolllaunch.com",
    "documentation": "https://www.scrolllaunch.com/advertise"
  },
  "transport": {
    "type": "http",
    "endpoint": "https://www.scrolllaunch.com/api/mcp"
  },
  "capabilities": {
    "tools": {
      "listChanged": false
    },
    "resources": {
      "subscribe": false,
      "listChanged": false
    },
    "prompts": {
      "listChanged": false
    },
    "logging": {}
  },
  "tools": [
    {
      "name": "search_products",
      "description": "Search ScrollLaunch's live product directory by keyword, category, or tag. Returns a ranked list of products with tagline, upvote count, and URL.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Free-text search string"
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 25,
            "default": 10
          }
        },
        "required": [
          "query"
        ]
      }
    },
    {
      "name": "get_weekly_leaderboard",
      "description": "Return the ranked product leaderboard for the current ISO week, ordered by upvotes.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "week": {
            "type": "string",
            "description": "Optional ISO week (YYYY-Www). Defaults to the current week."
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 50,
            "default": 20
          }
        }
      }
    },
    {
      "name": "get_product",
      "description": "Fetch detailed metadata (name, tagline, description, categories, website, upvotes) for a product by slug.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "slug": {
            "type": "string"
          }
        },
        "required": [
          "slug"
        ]
      }
    }
  ],
  "meta": {
    "catalog": "https://www.scrolllaunch.com/.well-known/api-catalog",
    "skills": "https://www.scrolllaunch.com/.well-known/agent-skills/index.json"
  }
}