MCP server

Product Atlas runs a Model Context Protocol server that exposes the product catalog as two read-only tools over the Streamable HTTP transport. It serves the same data the canvas shows and doesn't require an API key.

Endpoint

Point any MCP client at this URL (HTTP transport):

https://mcp.productatlas.io

Tools

  • search_products

    Search recent launches by meaning, or list the most upvoted products in a time window. Filter by minimum upvotes and date range.

  • get_product

    Fetch a single product's full description along with its related and competing products.

Connecting

Claude Code

Add it with the CLI:

claude mcp add --transport http productatlas https://mcp.productatlas.io

Other clients (JSON config)

Most MCP clients accept a server entry like this:

{
  "mcpServers": {
    "productatlas": {
      "type": "http",
      "url": "https://mcp.productatlas.io"
    }
  }
}