MCP server
Public, read-only tools for AI agents - search live products, weekly + directories DR leaderboards, product detail by slug. No API key.
Connect agents to the live catalog
Point any MCP client at our HTTP transport. The same four tools are registered in-browser via WebMCP when the site loads.
www.scrolllaunch.com/api/mcp
Public tools
API key
Access
Transport
Connect
Endpoints
Point your MCP client at the HTTP transport. The server card is the machine-readable discovery document.
POST JSON-RPC 2.0 · GET returns a short discovery stub
/api/mcpStreamable HTTP endpoint + SEP-1960 manifest
/.well-known/mcp.jsonSEP-1649 card - Streamable HTTP, tools, capabilities
/.well-known/mcp/server-card.jsonBounded JSON: this week's board + recently live
/api/aiTools
Four public tools
Same catalog as the server card and the in-browser WebMCP registration.
01
search_products
Keyword search across the live product directory.
Args: query (required), limit 1–25 (default 10)
02
get_weekly_leaderboard
Ranked launches for an ISO week (defaults to the current week).
Args: week? (YYYY-Www), limit 1–50 (default 20)
03
get_product
Full public metadata for one product by slug.
Args: slug (required)
04
get_directories_dr_leaderboard
Highest-DR indexable startup directories (Ahrefs Domain Rating).
Args: limit 1–100 (default 25)
Examples
JSON-RPC over HTTP
Stateless - no sessions, no SSE. Send one JSON-RPC object per POST.
{
"jsonrpc": "2.0",
"id": 1,
"method": "initialize",
"params": {
"protocolVersion": "2024-11-05",
"capabilities": {},
"clientInfo": { "name": "example-agent", "version": "1.0.0" }
}
}{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "search_products",
"arguments": { "query": "ai saas", "limit": 5 }
}
}Also supported: ping, tools/list. Rate-limited; public catalog data only.
FAQ
Common questions
Start with the lightest surface
Agents: read llms.txt, grab /api/ai for a bounded snapshot, then call MCP tools for search and detail. Prefer HTTP for server-side agents; WebMCP mirrors the same tools in-browser.