From novada-mcp
**When to use:** You need structured records from a known platform (Amazon, TikTok, Reddit, LinkedIn, etc.) — not raw HTML, but clean tabular data.
How this skill is triggered — by the user, by Claude, or both
Slash command
/novada-mcp:novada-scrapeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**When to use:** You need structured records from a known platform (Amazon, TikTok, Reddit, LinkedIn, etc.) — not raw HTML, but clean tabular data.
When to use: You need structured records from a known platform (Amazon, TikTok, Reddit, LinkedIn, etc.) — not raw HTML, but clean tabular data.
ALWAYS read the novada://scraper-platforms resource before calling novada_scrape. Platform names and operation IDs are exact — guessing causes 11008 errors.
// Read the resource first:
// novada://scraper-platforms
| Platform | Operation example | Key params |
|---|---|---|
| amazon.com | amazon_product_by-keywords | keyword, num |
| amazon.com | amazon_product_by-asin | asin |
| reddit.com | reddit_posts_by-keywords | keyword, num |
| tiktok.com | tiktok_user_videos | username, num |
| linkedin.com | linkedin_job_listings | keyword, location |
| google.com | google_search | q, num |
| glassdoor.com | glassdoor_jobs_by-keywords | keyword, location |
| zillow.com | zillow_listings | location |
| github.com | github_repository_details | owner, repo |
{
"platform": "amazon.com",
"operation": "amazon_product_by-keywords",
"params": {"keyword": "mechanical keyboard", "num": 10},
"format": "markdown",
"limit": 10
}
markdown — best for agents reading and reasoning over resultsjson — best for code processing and downstream pipelinestoon — token-optimized format (40-65% smaller), pipe-separated rows| Error | Meaning | Action |
|---|---|---|
| 11006 | Scraper API not activated | Activate at dashboard.novada.com. Do NOT retry. |
| 11008 | Invalid platform name | Check platform name. Read novada://scraper-platforms. |
| 10001 | Invalid file type for operation | Try different operation. Contact support. |
| code 0, no task_id | Unexpected response shape | Retry once. |
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub novadalabs/novada-search-mcp --plugin novada-mcp