novada_scrape
Extract structured tabular records from 129 platforms like Amazon, Reddit, and LinkedIn using platform-specific scraping operations. Get product data, social posts, job listings, and reviews.
Instructions
Use when you need structured data from a specific platform — not raw HTML, but clean tabular records. Supports 129 platforms: Amazon, Reddit, TikTok, LinkedIn, Google Shopping, Glassdoor, GitHub, Zillow, Airbnb, and more.
Best for: E-commerce product data, social posts/comments, job listings, reviews, real estate, market data.
Not for: General web pages (use novada_extract), unknown domains not in the platform list (use novada_crawl).
Output formats: "markdown" (default, agent-optimized table), "json" (structured, for programmatic use).
Example: platform="amazon.com", operation="amazon_product_keywords", params={keyword:"iphone 16", num:5}
Discover platforms: Read the novada://scraper-platforms MCP resource for the complete platform list with operation IDs and required params.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| platform | Yes | Platform domain to scrape. E.g. 'amazon.com', 'reddit.com', 'tiktok.com', 'linkedin.com', 'google.com'. | |
| operation | Yes | Scraping operation ID. Examples: 'amazon_product_keywords', 'amazon_product_asin', 'tiktok_posts_url', 'linkedin_company_information_url', 'github_repository_repo-url', 'twitter_profile_username', 'youtube_video_search_label'. Read novada://scraper-platforms resource for the complete list with required params. | |
| params | Yes | Operation-specific parameters. E.g. { keyword: 'iphone 16', num: 5 } for keyword search, { url: 'https://...' } for URL-based ops, { asin: 'B09...' } for ASIN lookup. | |
| limit | Yes | Max records to return. Default 20, max 100. | |
| format | Yes | Output format. 'markdown' (default): structured table, easy to read and reason over. 'json': raw records array for programmatic processing. 'toon': token-optimized pipe-separated format (40-65% smaller than JSON/markdown). | markdown |