@pullapi/product-hunt-scraper-mcp
v1.0.0
Published
Product Hunt MCP server — product details, daily top launches, search & comments. For Claude, Cursor & AI agents.
Maintainers
Readme
Product Hunt Scraper MCP Server
An MCP server that provides real-time Product Hunt data — product details with votes and makers, daily top launches, search, and comments — for use with Claude, Cursor, and other MCP-compatible AI tools.
Features
- Get Product — Get Product Hunt product details including votes, reviews, makers, and links
- Get Daily Top — Get top Product Hunt products for a given date
- Search Products — Search Product Hunt for products by keyword
- Get Comments — Get comments/discussion on a Product Hunt product
Tools
get_product
Get Product Hunt product details including votes, reviews, makers, and links
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| slug | string | Yes | Product Hunt product slug |
get_daily_top
Get top Product Hunt products for a given date
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| date | string | No | Date in YYYY-MM-DD format (defaults to today) |
search_products
Search Product Hunt for products by keyword
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| query | string | Yes | Search query |
get_comments
Get comments/discussion on a Product Hunt product
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| slug | string | Yes | Product Hunt product slug |
Configuration
Get your API key from RapidAPI.
Usage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"product-hunt": {
"command": "npx",
"args": ["-y", "@pullapi/product-hunt-scraper-mcp"],
"env": {
"RAPIDAPI_KEY": "your-rapidapi-key"
}
}
}
}Usage with Cursor
Add to your Cursor MCP settings (.cursor/mcp.json):
{
"mcpServers": {
"product-hunt": {
"command": "npx",
"args": ["-y", "@pullapi/product-hunt-scraper-mcp"],
"env": {
"RAPIDAPI_KEY": "your-rapidapi-key"
}
}
}
}License
MIT
