Back to Browse

Scavio MCP Server

Developer ToolsModerate6.8MCP RegistryLocalRemote
Free

Server data from the Official MCP Registry

Web search, page extraction and structured commerce, social and business data for AI agents

About

Web search, page extraction and structured commerce, social and business data for AI agents

Remote endpoints: streamable-http: https://mcp.scavio.dev/mcp

Security Report

6.8
Moderate6.8Moderate Risk

Valid MCP server (1 strong, 2 medium validity signals). 7 known CVEs in dependencies Package registry verified. Imported from the Official MCP Registry.

Endpoint verified · Requires authentication · 9 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

What You'll Need

Set these up before or after installing:

Your Scavio API key from scavio.devRequired

Environment variable: SCAVIO_API_KEY

How to Install & Connect

Available as Local & Remote

This plugin can run on your machine or connect to a hosted endpoint. during install.

Documentation

View on GitHub

From the project's GitHub README.

Scavio MCP Server

GitHub Repo stars License

Scavio is a unified Web Search API and MCP server that gives AI agents web search, page extraction, and structured data from e-commerce, social, travel, jobs, real-estate, app-store, ad-library and company-filing sources. 191 tools across 31 platforms plus Extract, one API key.

The 22 platforms added in 0.13.0 are opt-in. Registering all 191 tools puts 262KB of tool definitions — roughly 70k tokens — into every session before you type anything. So the default is the surface 0.12.x already had, plus Extract: 106 tools, 102KB. Upgrading never removes a tool you were using. Everything else is one env var away: see Choosing which tools load.

Remote MCP Server

Connect directly to Scavio's remote MCP server without any local installation:

https://mcp.scavio.dev/mcp

Pass your API key via the x-api-key header. Get your key at scavio.dev.


Run Locally (npx)

Prefer to run the server on your own machine? Use npx with no clone or build. The server runs over stdio and only needs your SCAVIO_API_KEY.

Claude Code

claude mcp add scavio -e SCAVIO_API_KEY=YOUR_SCAVIO_API_KEY -- npx -y @scavio/mcp-server

Any MCP-Compatible Client (Claude Desktop, Cursor, Windsurf, VS Code, etc.)

{
  "mcpServers": {
    "scavio": {
      "command": "npx",
      "args": ["-y", "@scavio/mcp-server"],
      "env": {
        "SCAVIO_API_KEY": "YOUR_SCAVIO_API_KEY"
      }
    }
  }
}

Requires Node.js 20+. Get your API key at scavio.dev.


Install

Claude Code

claude mcp add scavio --transport http --url https://mcp.scavio.dev/mcp --header "x-api-key: YOUR_SCAVIO_API_KEY"

Claude Desktop

Add to claude_desktop_config.json (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):

{
  "mcpServers": {
    "scavio": {
      "command": "npx",
      "args": ["-y", "@scavio/mcp-server"],
      "env": {
        "SCAVIO_API_KEY": "YOUR_SCAVIO_API_KEY"
      }
    }
  }
}

Requires Node.js 20+. Restart Claude Desktop after saving.

Cursor

Install MCP Server

Or add to .cursor/mcp.json in your project root or ~/.cursor/mcp.json for global:

{
  "mcpServers": {
    "scavio": {
      "type": "http",
      "url": "https://mcp.scavio.dev/mcp",
      "headers": {
        "x-api-key": "YOUR_SCAVIO_API_KEY"
      }
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "scavio": {
      "type": "http",
      "url": "https://mcp.scavio.dev/mcp",
      "headers": {
        "x-api-key": "YOUR_SCAVIO_API_KEY"
      }
    }
  }
}

VS Code

Create .vscode/mcp.json in your project root:

{
  "servers": {
    "scavio": {
      "type": "http",
      "url": "https://mcp.scavio.dev/mcp",
      "headers": {
        "x-api-key": "YOUR_SCAVIO_API_KEY"
      }
    }
  }
}

ChatGPT

  1. Go to ChatGPT > Settings > Apps & Connectors
  2. Click Add custom connector
  3. Enter the MCP server URL: https://mcp.scavio.dev/mcp
  4. Configure authentication with your API key

Cline

Add to cline_mcp_settings.json (open via Cline sidebar > MCP Servers > Configure):

{
  "mcpServers": {
    "scavio": {
      "type": "http",
      "url": "https://mcp.scavio.dev/mcp",
      "headers": {
        "x-api-key": "YOUR_SCAVIO_API_KEY"
      }
    }
  }
}

Zed

Add to settings (Cmd+,):

{
  "assistant": {
    "mcp_servers": {
      "scavio": {
        "type": "http",
        "url": "https://mcp.scavio.dev/mcp",
        "headers": {
          "x-api-key": "YOUR_SCAVIO_API_KEY"
        }
      }
    }
  }
}

Any MCP-Compatible Client

{
  "type": "http",
  "url": "https://mcp.scavio.dev/mcp",
  "headers": {
    "x-api-key": "YOUR_SCAVIO_API_KEY"
  }
}

Choosing which tools load

Scavio exposes 191 tools. Loading all of them costs 262KB of tools/list — roughly 70k tokens of context in every session before the user has said anything, and more tools than some clients will accept at all. So the server registers a curated subset by default and lets you pick the rest. The sizes below are measured, not estimated: npm run toolslist reproduces them.

SCAVIO_PLATFORMS is a comma-separated allowlist of platform keys:

ValueRegisters
(unset)Everything 0.12.x had, plus extract106 tools, 102KB
allevery platform — 191 tools, 262KB
extract,sec,g2just those platforms — 11 tools, 20KB
default,walmart,metaadsthe default set plus two more — 58 tools
noneno platform tools, only get_usage

Keys are matched case- and punctuation-insensitively, so meta-ads, metaads and META_ADS are the same thing, and twitter resolves to x. An unknown key is logged to stderr and skipped rather than failing the server.

get_usage always registers — it is free, and it is what every install guide tells you to call to check the server works.

Platform keys: extract, google, youtube, tiktok, instagram, reddit, x, linkedin, threads, kuaishou, amazon, walmart, ebay, target, homedepot, tiktok-shop, booking, airbnb, tripadvisor, yelp, zillow, redfin, indeed, glassdoor, appstore, googleplay, g2, capterra, googleads, metaads, sec, companieshouse

Local (stdio)

{
  "mcpServers": {
    "scavio": {
      "command": "npx",
      "args": ["-y", "@scavio/mcp-server"],
      "env": {
        "SCAVIO_API_KEY": "YOUR_SCAVIO_API_KEY",
        "SCAVIO_PLATFORMS": "extract,google,zillow,redfin"
      }
    }
  }
}

Remote (HTTP)

The hosted server has no env var to read, so pass the allowlist per connection — either as a header or as a query parameter:

{
  "scavio": {
    "type": "http",
    "url": "https://mcp.scavio.dev/mcp",
    "headers": {
      "x-api-key": "YOUR_SCAVIO_API_KEY",
      "x-scavio-platforms": "extract,google,sec,companieshouse"
    }
  }
}
https://mcp.scavio.dev/mcp?platforms=all

Upgrading from 0.12.x

Nothing to do. The default set is exactly the 10 platforms 0.12.x registered, plus Extract — every tool you were using still loads, and the context cost is unchanged. Walmart grew from 2 tools to 7, so the count moves 100 → 106.

The 22 platforms added in 0.13.0 are opt-in. Add them additively:

SCAVIO_PLATFORMS=default,zillow,redfin,sec

One breaking fix worth knowing: search_walmart previously sent fulfillment_speed: "anytime" on every call, which the API rejects. The parameter is now today or tomorrow with no default.


Available Tools

Every tool costs 1 credit per call unless its section says otherwise. Several platforms price per endpoint (YouTube, Instagram, LinkedIn, Kuaishou) or per request body (Extract, Threads, Walmart); get_amazon_options and get_usage are free.

Extract

ToolDescription
extract_urlRead any web page and return it as clean Markdown, plain text, or raw HTML

Extract is tier-priced by the mode parameter, not flat: normal (plain fetch) and advanced (full JavaScript rendering) cost 1 credit, ultra (residential proxy, for hard bot walls) costs 2. Start at normal and escalate only when the content comes back empty or blocked. You are billed only on a successful extraction — a dead link, a bot wall or a timeout costs nothing. There is no pagination: the whole page comes back in one call.

Google Search API

ToolDescription
search_googleWeb search (v2) with organic results, ads, and AI Overview
google_ai_modeAI Mode conversational answer with cited sources
google_maps_searchSearch Google Maps for local businesses
google_maps_placePlace details: address, phone, hours, rating
google_maps_reviewsReviews for a place with pagination
google_shoppingProduct listings with price, store, and rating
google_shopping_productProduct detail and sellers
google_shopping_storesMore sellers for a product (pagination)
google_flightsFlight itineraries with prices and stops
google_hotelsHotel search with prices and ratings
google_hotels_detailHotel property details
google_newsNews results by query, topic, story, or publication
google_trendsInterest-over-time and related queries
google_trendingTrending searches

YouTube Data API

ToolDescription
search_youtubeSearch videos, channels, and playlists
search_youtube_shortsSearch short-form videos
youtube_search_suggestionsGet search autocomplete suggestions
get_youtube_videoGet full video details, chapters, and captions
get_youtube_metadataDeprecated alias of get_youtube_video
get_youtube_commentsGet comments on a video with pagination
get_youtube_comment_repliesGet replies to a specific comment
get_youtube_transcriptGet a video transcript as plain text or SRT
get_youtube_relatedGet videos related to a video
search_youtube_channelsSearch channels by keyword
get_youtube_channelGet channel profile by ID, handle, or URL
get_youtube_channel_videosList a channel's videos
get_youtube_channel_shortsList a channel's Shorts
get_youtube_channel_communityList a channel's community posts
resolve_youtube_channelResolve a handle or URL to a channel ID
get_youtube_streamsGet direct media stream URLs for a video

Credit cost varies: get_youtube_transcript costs 8, get_youtube_streams 3, search_youtube and search_youtube_shorts 2, and every other YouTube tool 1. get_youtube_related accepts a cursor but never returns one, so treat it as a single page.

Amazon Product API

ToolDescription
search_amazonSearch product listings across 22 marketplaces (no sort option)
get_amazon_productGet full product details by ASIN
get_amazon_offersList every seller offering an ASIN, with buy-box winner
get_amazon_optionsList the supported marketplaces and their country codes (free)

Walmart API

ToolDescription
search_walmartSearch product listings with price and delivery filters
get_walmart_productGet full product details by product ID
get_walmart_reviewsCustomer reviews with ratings, text, author, date and the rating breakdown
get_walmart_categoryProducts within a category, same product shape as search
get_walmart_offersThe buy-box offer for a product: price, seller, condition, buy-box flag
get_walmart_sellerMarketplace seller storefront: name, rating, Pro Seller badge, business details
get_walmart_seller_productsA seller's catalogue; total_count is the real size

Walmart is priced by the domain parameter, not at a flat rate: com (US, default) and ca cost 1 credit, com.mx costs 2. Only search_walmart and get_walmart_category accept domain, so only those two can cost 2 — the other five are always 1. The id-keyed tools are US-only, because walmart.ca product pages cannot be fetched.

Two shapes to plan for. get_walmart_offers returns the buy-box winner only — Walmart server-renders just that one offer, so expect a single row even when total_offer_count is higher. And get_walmart_seller_products is capped at roughly the first 40 items with no page or cursor parameter; read total_count to know you are looking at a slice. Both seller tools need the NUMERIC seller_catalog_id from a product, search or offers response — the GUID-form seller_id in those same responses 404s.

TikTok API

ToolDescription
get_tiktok_profileGet user profile (bio, follower/following counts, likes)
get_tiktok_user_postsList a user's videos with stats
get_tiktok_videoGet detailed info for a single video
get_tiktok_video_commentsGet comments on a video
get_tiktok_comment_repliesGet replies to a specific comment
search_tiktok_videosSearch videos by keyword
search_tiktok_usersSearch users by keyword
get_tiktok_hashtagGet hashtag details and stats
get_tiktok_hashtag_videosList videos for a hashtag
get_tiktok_user_followersGet a user's follower list
get_tiktok_user_followingsGet a user's following list

Instagram API

ToolDescription
get_instagram_profileGet user profile (bio, follower/following/post counts)
get_instagram_user_postsList a user's posts with pagination
get_instagram_user_reelsList a user's Reels with pagination
get_instagram_user_taggedList posts a user is tagged in
get_instagram_user_storiesGet a user's active stories
get_instagram_postGet a single post by url, media_id, or shortcode
get_instagram_post_commentsGet comments on a post
get_instagram_comment_repliesGet replies to a specific comment
search_instagram_usersSearch users by keyword
search_instagram_hashtagsSearch hashtags by keyword
get_instagram_user_followersGet a user's follower list
get_instagram_user_followingsGet a user's following list

Instagram is priced per endpoint, not at a flat rate: get_instagram_user_posts costs 2, get_instagram_post and get_instagram_comment_replies cost 8, and the other nine tools cost 10. The 10-credit endpoints hedge two upstream providers and bill both legs, which is what the price reflects.

Reddit API

ToolDescription
search_redditSearch Reddit posts by query, relevance order, cursor pagination
get_reddit_postGet a single post by URL or id (no comments; see below)
get_reddit_search_suggestionsGet search autocomplete suggestions
get_reddit_post_commentsGet a post's top-level comments with pagination
get_reddit_comment_repliesGet replies to a specific comment
get_reddit_subredditGet subreddit metadata and subscriber count
get_reddit_subreddit_postsList a subreddit's post feed
get_reddit_userGet a redditor's profile
get_reddit_user_postsList a redditor's submitted posts
get_reddit_user_commentsList a redditor's comments
get_reddit_popularGet the site-wide popular feed
get_reddit_trendingGet current trending search queries

Every Reddit tool costs 1 credit. Two things to know: search_reddit takes a query and a cursor only - there is no sort or post-type filter, results come back in relevance order - and get_reddit_post returns a flat post object with no comments, so call get_reddit_post_comments with the post id for those. Reddit is the slowest platform here, typically 5-15 seconds per call.

X API

ToolDescription
search_xSearch tweets and people by keyword
get_tweetGet full details for a single tweet
get_tweet_commentsGet replies to a tweet (ranked or chronological)
get_tweet_retweetersList users who retweeted a tweet
get_x_userGet a user's profile by handle
get_x_user_tweetsList a user's tweets
get_x_user_repliesList a user's tweets and replies
get_x_user_mediaList a user's media tweets
get_x_user_followersList a user's followers
get_x_user_followingsList accounts a user follows
get_x_trendingGet trending topics for a country

get_x_user_tweets, get_x_user_replies and get_x_user_media return a next_cursor but no has_more, so page until the cursor is absent or the timeline comes back empty.

LinkedIn API

ToolDescription
get_linkedin_personGet a member's full profile, experience and education
get_linkedin_person_aboutGet a member's about/overview sections
get_linkedin_person_postsList a member's recent posts (up to 50)
get_linkedin_companyGet a company's profile, locations and related companies
get_linkedin_company_postsList a company's recent posts (up to 50)
search_linkedin_jobsSearch for jobs by keyword and location
get_linkedin_jobGet full details for a job listing
get_linkedin_postGet full details for a single post
get_linkedin_post_commentsGet comments on a post, 10 per page

All take a vanity handle, slug or id, or a full LinkedIn URL. Credit cost varies: get_linkedin_person, get_linkedin_person_about, get_linkedin_company and get_linkedin_post cost 1; get_linkedin_person_posts, get_linkedin_company_posts, search_linkedin_jobs and get_linkedin_post_comments cost 10 per page; get_linkedin_job costs 30.

The upstream provider retired the datasets behind member contact info, the company employee directory, per-company job listings, people search and post search, so those five tools were removed. get_linkedin_company still returns a small sample of featured employees, and search_linkedin_jobs with a company name substitutes for per-company listings.

TikTok Shop API

ToolDescription
search_tiktok_shopSearch TikTok Shop products by keyword (US catalog, exact prices)
get_tiktok_shop_search_suggestionsKeyword autocomplete for a partial query, 8 regions
get_tiktok_shop_productFull product detail (no price; ~44% of search IDs resolve)
get_tiktok_shop_product_reviewsPaginated product reviews, up to 200 per call
get_tiktok_shop_categoriesThe global category tree (28 top-level, 240 nodes)
get_tiktok_shop_category_productsList products under a category ID, with exact prices
get_tiktok_shop_shop_productsList a seller's catalog, 30 per page, with exact prices
resolve_tiktok_shop_urlResolve a TikTok Shop URL or share link to a product/shop ID

Two things to know: get_tiktok_shop_product does not return a price (TikTok masks it on the product page upstream) - exact prices come from search_tiktok_shop, get_tiktok_shop_shop_products and get_tiktok_shop_category_products. And only about 44% of the product IDs returned by search resolve on get_tiktok_shop_product (11 of 25 measured), because upstream has no detail data for the rest. That miss is signalled by the HTTP 404 status, not by any field in the response body, and it is a normal outcome rather than an error to retry - the tool returns it as a plain result with status: "no_detail_data" so agents skip the product instead of looping. For an id that will not resolve, get_tiktok_shop_product_reviews is often still usable: across 8 measured ids that failed on detail, 8 of 8 returned HTTP 200 on reviews and 7 of 8 returned at least one review.

Threads

ToolDescription
get_threads_profileProfile details for a Threads user, by user_id or username
get_threads_user_postsA user's Threads posts, cursor-paginated
get_threads_user_repliesA user's replies, cursor-paginated
get_threads_postA single post by id or threads.net URL
get_threads_post_commentsReplies to a post, cursor-paginated
search_threads_usersProfiles matching a name or handle - the only search Threads exposes

Threads is priced by how you address a user, not per endpoint: 2 credits when you pass user_id, 4 credits when you pass username. Only get_threads_profile, get_threads_user_posts and get_threads_user_replies accept a username; the other three are always 2. Prefer user_id - a handle buys a second upstream lookup.

Kuaishou (China)

ToolDescription
get_kuaishou_profileProfile details for a Kuaishou user (10 credits)
get_kuaishou_user_postsA user's top posts, cursor-paginated
get_kuaishou_user_liveA user's current live-stream status
resolve_kuaishou_userTurn a Kuaishou share link into a user id
get_kuaishou_videoA single video by photo id or URL (2 credits)
get_kuaishou_video_commentsComments on a video, cursor-paginated
get_kuaishou_comment_repliesReplies under a root comment
get_kuaishou_videos_batchUp to 20 videos in one call (40 credits)
search_kuaishouMixed-result search across Kuaishou (10 credits)
search_kuaishou_videosVideo search results (10 credits)
search_kuaishou_usersUser search results (10 credits)
search_kuaishou_liveLive-stream search results (10 credits)
get_kuaishou_tag_feedPosts under a hashtag, cursor-paginated
get_kuaishou_trendingHot, live, shopping, brand and music leaderboards

Kuaishou is priced per endpoint, not at a flat rate: get_kuaishou_profile and all four search tools cost 10, get_kuaishou_video 2, get_kuaishou_videos_batch 40, and every other tool 1.

eBay

ToolDescription
search_ebaySearch live or SOLD listings: price, condition, bids, shipping, seller feedback
get_ebay_productOne listing in full: price, condition, images, item specifics, shipping, returns, auction state
get_ebay_sellerSeller profile card: store name, feedback score, items sold, followers, location

1 credit per call. get_ebay_seller is a profile card and cannot enumerate a catalogue - list a seller's inventory with search_ebay and seller set and no keyword. sold: true searches completed listings that actually sold; on that view eBay publishes no headline count, so total_results is null. per_page accepts only 60, 120 or 240.

Target

ToolDescription
search_target_productsSearch Target.com: prices, ratings, badges and promotions
get_target_categoryProducts in a category, same shape as search plus the breadcrumb
get_target_productProduct details by TCIN: price, images, specifications, variants, fulfillment
get_target_reviewsReviews with the rating breakdown, per-attribute averages and guest photos

1 credit per call. get_target_product and get_target_reviews are single-shot; search and category page with page + count.

Home Depot

ToolDescription
search_home_depotSearch Home Depot: price, brand and model, ratings, per-store pickup/delivery
get_home_depot_productFull item detail: pricing, media, spec table, dimensions, documents, return policy
get_home_depot_reviewsFull review bodies, rating distribution, per-attribute ratings, seller responses

2 credits per call. Search page size is fixed at 12 and cannot be changed. Reviews return 30 per page; total_pages is the last page that exists and asking past it is a 404.

Booking.com

ToolDescription
search_bookingProperties for a destination and stay: live nightly price, review score, room type
get_booking_hotelOne property in full: rooms and rate plans, facilities, house rules, policies, images
get_booking_reviewsGuest reviews with the score breakdown by category and Booking's own summary

1 credit per call. Search returns 25 properties per page; get_booking_hotel and get_booking_reviews are single-shot.

Airbnb

ToolDescription
search_airbnbStays with stay-total and per-night price, the full discount ledger, rating, coordinates
get_airbnb_listingOne listing in full: description, capacity, grouped amenities, host, house rules, rating breakdown
get_airbnb_reviewsReview bodies with per-review rating, date and reviewer profile

1 credit per call. search_airbnb takes page XOR cursor - sending both is rejected, and cursor wins. 18 listings per page. get_airbnb_reviews pages with limit + offset.

Tripadvisor

ToolDescription
resolve_tripadvisor_locationSTART HERE - resolve a place or business name to the geo_id / location_id pair
search_tripadvisorRestaurants, hotels or attractions in a geo, TripAdvisor-ranked
get_tripadvisor_locationOne location in full: rating histogram, sub-ratings, city ranking, amenities, first review page
get_tripadvisor_reviewsA page of reviews: rating, trip date and type, reviewer profile, management response

2 credits per call. Start with resolve_tripadvisor_location for the geo_id / location_id pair everything else needs. Search returns 30 per page and a page past the last is a 404, not an empty result. Reviews return 15 per page for restaurants and 10 for hotels and attractions, so category must match the location's own type on any page past the first.

Yelp

ToolDescription
search_yelpBusinesses in Yelp's ranked order: rating, review count, price band, categories, hours
get_yelp_businessOne business in full: per-star histogram, contact, hours, amenities, health inspections, Q&A
get_yelp_reviewsA page of reviews: rating, full text, author profile, photos, owner response

2 credits per call. Yelp fixes the page size at 10. get_yelp_business already includes the first page of reviews at no extra cost. A review page past the last is a 404, not an empty result.

Zillow

ToolDescription
search_zillowListings in a region: price, beds, baths, living area, Zestimate, coordinates, days on market
get_zillow_propertyFull listing: price and price history, Zestimate, tax history, RESO facts, schools, photos
get_zillow_agent_reviewsA Zillow AGENT's profile and reviews, specialties, licenses, service areas, sales counts

1 credit per call. Only search_zillow paginates. get_zillow_agent_reviews is an AGENT profile, not a property.

Redfin

ToolDescription
search_redfinListings: price, price per sqft, beds, baths, living area, lot size, year built, photos
get_redfin_propertyFull listing: Redfin Estimate, MLS fact sheet, price and tax history, schools, climate risk, comps
get_redfin_marketMarket stats for a region: median list and sale price, sale-to-list ratio, days on market, compete score

1 credit per call. search_redfin pages with page + limit, up to 350 listings per page; the other two are single-shot.

Indeed

ToolDescription
search_indeed_jobsJob postings: title, employer, rating, location, salary range, job type, apply route
get_indeed_jobOne posting in full: description text and HTML, structured salary, benefits, original ATS link
get_indeed_companyEmployer profile: industry, HQ, size, revenue, CEO approval, per-category ratings, open roles
get_indeed_company_reviewsEmployee reviews with per-category ratings, pros/cons, reviewer job title and location

2 credits per call. Job search returns 10 postings per page, company reviews 20 per page. get_indeed_job and get_indeed_company are single-shot.

Glassdoor

ToolDescription
resolve_glassdoor_companySTART HERE - resolve a company name to the employer_id the other tools need
get_glassdoor_companyEmployer profile: ratings, star distribution, CEO approval, size and revenue bands, awards
get_glassdoor_reviewsUp to three full reviews with per-axis scores and employer response, plus complete rating statistics
get_glassdoor_salariesSalaries by job title: base-pay and total-pay percentiles P10-P90, sample counts, pay period

1 credit per call. Start with resolve_glassdoor_company for the employer_id. Only get_glassdoor_salaries paginates (10 job titles per page; page_count is how many exist). get_glassdoor_reviews returns up to three full reviews plus complete rating statistics - it is not a paginated review feed.

Apple App Store

ToolDescription
search_app_storeUp to 200 fully-shaped apps - doubles as a bulk metadata fetch and a publisher lookup
get_app_store_appFull listing: developer identity, price, all-time and current-version ratings, release notes, screenshots
get_app_store_reviewsA page of reviews: star rating, title, full text, author, and the app version reviewed

1 credit per call. Reviews page 1-10 at 50 per page and stop hard at page 10: 500 reviews per storefront is Apple's anonymous ceiling, and you reach further by asking a different country. Search and app detail do not paginate.

Google Play

ToolDescription
search_google_playRanked apps: package name, developer, rating, install count, price and IAP range, screenshots
get_google_play_appFull store listing: the real install count, star histogram, IAPs, permissions, Data safety table
get_google_play_reviewsA page of reviews: star score, full text, thumbs-up count, developer reply, app version

2 credits per call - a separate namespace from google and not on the Google-exempt price. Reviews are cursor-paginated, and the cursor is opaque, single-use and encodes the sort as well as the position, so send it back with the same sort it came from. A cursor past the last review is a 404. Search and app detail do not paginate.

G2 Software Reviews

ToolDescription
search_g2_softwareSearch B2B software: star rating, review count, vendor, categories; each row carries product_id
get_g2_productFull profile: per-star histogram, pricing editions, feature groups, integrations, alternatives, AI pros/cons
get_g2_reviewsA page of reviews: rating, likes/dislikes, problems solved, reviewer firmographics, validated flags

5 credits per call - the most expensive platform on Scavio. search_g2_software pages with page + limit (capped at 100 on our side); get_g2_reviews is fixed at 10 per page and paginates well past the 10 pages G2's own widget links to. get_g2_product is single-shot.

Capterra Software Reviews

ToolDescription
search_capterra_softwareSearch B2B software: 20 ranked products with rating, review count and paid-placement flag
get_capterra_productFull profile: per-star histogram, four scored criteria, pricing table, features, plus 25 recent reviews
get_capterra_reviewsA page of reviews: overall plus five per-criterion scores, pros, cons, alternatives considered

2 credits per call. Only get_capterra_reviews paginates: 25 per page, capped at page 100 - past it Capterra answers 200 with page one, so check what came back. get_capterra_product already includes the 25 most recent reviews.

Google Ads Transparency

ToolDescription
resolve_google_ads_advertiserSTART HERE - resolve a brand name or domain to the advertiser_id
search_google_adsEvery ad Google is running for one advertiser, with first/last seen dates and days actually run
get_google_ads_creativeOne creative in full - the only tool carrying size variations, impression bucket and region breakdown

1 credit per call. Start with resolve_google_ads_advertiser to turn a brand name or domain into an advertiser_id. search_google_ads is cursor-paginated at 100 ads per page - re-send the same filters alongside the cursor. get_google_ads_creative is the only tool carrying a creative's history, region breakdown and impression bucket.

Meta Ad Library

ToolDescription
search_meta_adsSearch the Meta Ad Library with full creative: ad copy, headline, CTA, media, platforms, run dates
get_meta_ads_advertiserEvery ad a Facebook Page is running, by numeric page id, with the same creative detail
get_meta_adOne ad in full by archive id: creative, advertiser, run dates, platforms, political disclosure

1 credit per call, and every cursor page is another credit: page 1 returns 30 ads, then 10 per page thereafter, so the cost of walking a whole query scales with depth. search_meta_ads and get_meta_ads_advertiser both cursor-paginate - walk has_next_page. get_meta_ad is single-shot.

SEC EDGAR

ToolDescription
resolve_sec_companySTART HERE - resolve a company name or ticker to the CIK everything else is keyed by
get_sec_companyFiler profile: legal and former names, SIC industry, EIN, LEI, fiscal year end, tickers
get_sec_filingsA page of one filer's filings: accession number, form, dates, 8-K item codes, document links
get_sec_conceptEvery value a filer reported for one XBRL concept, newest first, with its source filing
get_sec_factsThe index of every XBRL concept a filer reports - use it to find what to ask get_sec_concept for
search_sec_filingsEDGAR full-text search, 2001-today, with facets by company, form, industry and state

1 credit per call on the official free EDGAR JSON API. Start with resolve_sec_company to turn a name or ticker into a CIK. get_sec_filings pages with page + limit; search_sec_filings pages up to 100, because the index refuses a result window past 10,000.

Companies House

ToolDescription
search_companies_houseSTART HERE - search the UK register by name for the company_number
get_companies_house_companyFull register entry: status, type, dates, registered office, SIC codes, accounts due dates
get_companies_house_officersOfficers current and resigned: role, appointment and resignation dates, nationality, DOB
get_companies_house_filing_historyFilings most recent first: date, type code, description, link to the filed PDF

1 credit per call on the official UK register. Start with search_companies_house for a company_number. Search returns 20 per page and is capped at page 50 - the register serves a 1000-result window per term whatever hit count it prints, then answers page 51 with a 416. Officers (35/page) and filing history have no upper page bound; past the last page they return an ordinary 200 with an empty list, which looks identical to having none.

Account

ToolDescription
get_usageCheck credit balance, plan, and usage stats

About Scavio

Scavio is a unified search API for AI agents and a data API for developers. One key, structured JSON, no scraping or proxies:

Teams use it as a SerpAPI alternative with structured multi-platform data — see Tavily vs Scavio for a head-to-head comparison.

Get a free Search API key at scavio.dev.


License

MIT

Reviews

No reviews yet

Be the first to review this server!