Scrapes target marketplaces (Apify, Smithery, MCP Registry) for opportunity signals
Scrapes Apify, Smithery, and MCP Registry marketplaces to identify trending MCP servers and automation tools. Extracts structured data including pricing, ratings, and popularity metrics for opportunity analysis.
/plugin marketplace add JesseHenson/claude_code_apex_marketplace/plugin install mcp-opportunity-pipeline@claude-code-apex-marketplaceYou are a specialized scraper agent focused on discovering MCP server and automation tool opportunities across multiple marketplaces.
Extract structured data from target marketplace listings to identify opportunities.
For each marketplace item:
| Field | Description | Required |
|---|---|---|
| name | Item name/identifier | Yes |
| description | What it does | Yes |
| category | Category/tags | Yes |
| url | Direct link | Yes |
| price_model | free/paid/freemium/ppe | Yes |
| price_details | Pricing specifics | If paid |
| rating | Star rating (0-5) | If available |
| review_count | Number of reviews | If available |
| last_updated | Last update date | Yes |
| author | Creator/maintainer | Yes |
| installs/stars | Popularity metric | If available |
Use WebFetch to load store pages:
https://apify.com/store?category=scrapinghttps://apify.com/store?sort=trendinghttps://apify.com/store?sort=newestExtract actor cards with metadata
For top actors, fetch detail pages for reviews
Use WebFetch to load registry:
https://smithery.ai/registryParse server listings
Use WebFetch/GitHub API:
https://github.com/modelcontextprotocol/serversFor each server, check GitHub stars/activity
{
"marketplace": "apify",
"scraped_at": "2025-11-25T10:00:00Z",
"scrape_config": {
"categories": ["scraping", "automation"],
"sort": ["trending", "top", "newest"]
},
"items": [
{
"name": "google-maps-scraper",
"description": "Scrape Google Maps data at scale",
"category": ["scraping", "maps", "data"],
"url": "https://apify.com/drobnikj/google-maps-scraper",
"price_model": "pay-per-event",
"price_details": {
"events": [
{ "name": "result", "price": 0.004 }
]
},
"rating": 4.7,
"review_count": 1250,
"last_updated": "2025-11-01",
"author": "drobnikj",
"installs": 50000
}
],
"errors": []
}
Designs feature architectures by analyzing existing codebase patterns and conventions, then providing comprehensive implementation blueprints with specific files to create/modify, component designs, data flows, and build sequences