mcpbeat

Product Hunt Scraper

gooseworks-ai/product-hunt-scraper

> Scrape Product Hunt trending products using Apify. Use when you need to discover new product launches, track competitors on Product Hunt, or monitor the startup ecosystem for relevant launches.

2k tokens
context cost
the whole folder, loaded on every use
3
files
ships runnable scripts
0
copies elsewhere
how many repositories repackaged it
1086
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/gooseworks-ai/goose-skills --skill product-hunt-scraper

What comes with it

6 817 bytes besides the instruction
scripts/scrape_producthunt.py
skill.meta.json

The instruction itself

4 sections, as written by the author

Product Hunt Scraper

Scrape trending products from Product Hunt using the Apify maximedupre/product-hunt-scraper actor.

Output fields: Each product has name, tagline, description, url (Product Hunt URL), and additional fields depending on the actor's output.

Quick Start

Requires APIFY_API_TOKEN env var (or --token flag).

# Today's top products
python3 skills/product-hunt-scraper/scripts/scrape_producthunt.py \
  --time-period daily --max-products 10 --output summary

# This week's products filtered by keyword
python3 skills/product-hunt-scraper/scripts/scrape_producthunt.py \
  --time-period weekly --keywords "AI,marketing" --output summary

# Monthly top products as JSON
python3 skills/product-hunt-scraper/scripts/scrape_producthunt.py \
  --time-period monthly --max-products 50

CLI Reference

| Flag | Default | Description |

|------|---------|-------------|

| --time-period | weekly | daily, weekly, or monthly |

| --max-products | 50 | Max products to scrape |

| --keywords | none | Keywords to filter (comma-separated, OR logic) |

| --output | json | Output format: json or summary |

| --token | env var | Apify token (prefer APIFY_API_TOKEN env var) |

| --timeout | 300 | Max seconds to wait for the Apify run |

Notes

  • Keyword filtering is client-side on product name + tagline + description
  • Results are sorted by upvote count (descending)

How to use it

Copy the folder

Take gooseworks-ai/product-hunt-scraper from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.