top_launches
Pack: producthunt · Endpoint: https://gateway.pipeworx.io/producthunt/mcp
Get today’s and recent top Product Hunt launches — new product and startup launches. Use this to see what launched today/recently or which products are trending. Returns name, tagline, vote/comment counts, URLs, and topics. Example: top_launches({ first: 10, order: “RANKING” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
first | number | no | Number of launches to return (default 10, max 20) |
order | string | no | Sort order: “RANKING” (default — trending), “VOTES” (most upvoted), or “NEWEST” (most recently launched) |
_apiKey | string | no | Optional — your own Product Hunt developer token for higher limits; omit to use the shared Pipeworx key. |
Example call
Arguments
{
"first": 10,
"order": "RANKING"
}
curl
curl -X POST https://gateway.pipeworx.io/producthunt/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"top_launches","arguments":{"first":10,"order":"RANKING"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('top_launches', {
"first": 10,
"order": "RANKING"
});
More examples
{
"first": 5,
"order": "VOTES",
"_apiKey": "your-producthunt-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"producthunt": {
"url": "https://gateway.pipeworx.io/producthunt/mcp"
}
}
}
See Getting Started for client-specific install steps.