Back to Browse

Reefapi MCP Server

Developer ToolsUse Caution4.8MCP RegistryLocalRemote
Free

Server data from the Official MCP Registry

One MCP server for 180+ live web-data APIs returning clean JSON from sites that block scrapers.

About

One MCP server for 180+ live web-data APIs returning clean JSON from sites that block scrapers.

Remote endpoints: streamable-http: https://api.reefapi.com/mcp

Security Report

4.8
Use Caution4.8High Risk

ReefAPI MCP server is well-architected with appropriate authentication controls and minimal code security risks. The server correctly separates keyless discovery tools from authenticated engine calls, uses secure credential handling via environment variables and request headers, and implements proper input validation. Minor code quality observations (broad exception handling, lack of input sanitization on engine/action names in logs) are typical for developer tool category and do not substantially impact security. Supply chain analysis found 5 known vulnerabilities in dependencies (0 critical, 5 high severity).

3 files analyzed ยท 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.

env_vars

Check that this permission is expected for this type of plugin.

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.

ReefAPI MCP

One MCP server for 150+ live web-data APIs โ€” search engines, social media, e-commerce, real estate, jobs, travel, news, finance, and company/domain/people intelligence. The assistant discovers the right engine, then pulls clean JSON from sites that block scrapers (captcha, login, JS, anti-bot).

Why one server, not one tool per API

Emitting one tool per API blows past the ~30โ€“50-tool ceiling where agents stop picking the right tool. ReefAPI uses dynamic discovery instead: five generic tools let the assistant find the right engine, then call it. Discovery is keyless; only call_engine needs a key. Failed or blocked calls cost nothing.

Tools

ToolKeylessWhat it does
search_engines(query)โœ…Ranks the catalog against English keywords or a short use-case ("company reviews", "is this domain free") and returns the best-matching engines with their actions.
get_catalog()โœ…Returns the full menu โ€” every engine with a one-line title, grouped by category โ€” so the model can pick semantically when a keyword search misses.
get_engine_schema(engine)โœ…Compact overview of one engine: each action with its description, required params, and return shape, kept lean so a large engine stays token-cheap.
get_action_schema(engine, action)โœ…Full detail for a single action: every parameter with type, allowed values, default, example, plus pricing and ready-to-run example params.
call_engine(engine, action, params)๐Ÿ”‘Runs the action and returns the uniform { ok, data, meta, error } envelope.

The intended path is search_engines (or get_catalog) โ†’ get_engine_schema โ†’ get_action_schema โ†’ call_engine.

Connect (remote โ€” recommended)

Add to Claude Desktop, Cursor, Windsurf, or any client that takes a remote MCP URL:

{
  "mcpServers": {
    "reefapi": {
      "url": "https://api.reefapi.com/mcp",
      "headers": { "Authorization": "Bearer YOUR_REEFAPI_KEY" }
    }
  }
}

Claude Code (CLI):

claude mcp add --transport http reefapi https://api.reefapi.com/mcp \
  --header "Authorization: Bearer YOUR_REEFAPI_KEY"

Get a free key (1,000 credits, no card) at https://reefapi.com.

Run it locally (stdio)

pip install -r requirements.txt
export REEFAPI_KEY=ak_live_your_key   # Windows: set REEFAPI_KEY=...
python server.py                      # stdio transport

Then point your client at python /path/to/server.py. The same file also serves the streamable-HTTP transport with MCP_TRANSPORT=streamable-http (used by the hosted endpoint above).

What you can ask

Each example below is answered by one engine; the link goes to that engine's parameters and response shape.

  • "What are people saying about the new iPhone on Reddit?" โ†’ reddit
  • "Get current Zillow listings in Austin under $500k." โ†’ zillow
  • "Is the domain coolstartup.ai available?" โ†’ domain-availability
  • "Compare Amazon prices for AirPods Pro." โ†’ amazon
  • "Top Hacker News stories right now." โ†’ hackernews
  • "What tech stack does stripe.com run on?" โ†’ domain-intel
  • "Find remote backend jobs posted this week." โ†’ global-jobs

You never have to name the engine yourself โ€” that is what search_engines is for. The links are there for when you want to see the exact params and fields before wiring a call.

Coverage

150+ engines across Search/SEO, Social Media, E-commerce, Real Estate, Jobs, Travel, News, Finance, Media/Film, Reputation/Reviews, Company/Domain/People intelligence, and developer utilities. Browse the full catalog at reefapi.com/docs, or call get_catalog() for the live list. A few of the most-used ones:

EngineReturns
amazonProduct search, listing detail, prices, variants and reviews
ebayListings, item detail and sold/completed pricing
aliexpressProduct search and detail, including per-SKU pricing and images
zillowFor-sale and rental listings, property detail and value estimates
redfinListings and market data as a second US real-estate source
redditSubreddit and keyword search, post detail and comment threads
blueskyPosts, profiles and search across the AT Protocol network
glassdoorCompany reviews, ratings and salary data
trustpilotBusiness profiles and customer reviews with ratings
indeedJob search and posting detail across country sites
domain-intelDNS, WHOIS and detected tech stack for a domain
news-intelArticle search and extraction across news sources

Every engine returns the same { ok, data, meta, error } envelope and draws on one shared credit pool.

License

MIT โ€” see LICENSE. The APIs are a hosted service with a free tier; see https://reefapi.com.

Reviews

No reviews yet

Be the first to review this server!