INDIVIDUAL MCP TOOL
search_engines
Find the right ReefAPI engine for a task — pass ENGLISH keywords or a short natural-language use-case ("detect a website's tech stack", "company reviews", "check a package for vulnerabilities", "is this domain available").
Input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests retrieving external content.
Parent endpoint
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.reefapi]
url = "https://api.reefapi.com/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"reefapi": {
"type": "http",
"url": "https://api.reefapi.com/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: reefapi
Remote MCP URL: https://api.reefapi.com/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"reefapi": {
"url": "https://api.reefapi.com/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"reefapi": {
"type": "http",
"url": "https://api.reefapi.com/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "reefapi",
"transport": "streamable-http",
"url": "https://api.reefapi.com/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
get_engine_schema— COMPACT overview of ONE engine: every action with its description, required params and what it returns — but NOT the full param detail (kept lean so a 90-action engine stays token-cheap).get_action_schema— FULL detail for ONE engine action: every parameter (type, required, description, allowed_values dropdown, default, example, min/max), what it returns, pricing, and a ready-to-run example_params.call_engine— Call a ReefAPI engine action — POST /<engine>/v1/<action> with `params`.get_catalog— The FULL ReefAPI catalog — EVERY engine with its one-line title, grouped by category.