Discovery Engine
Discovery Engine is not another AI data analyst that writes pandas or SQL for you. Discovery Engine finds complex patterns in your data - feature interactions, nonlinear thresholds, and meaningful subgroups - without requiring prior hypotheses about what matters. Each pattern is validated on hold-out data, corrected for multiple testing, and checked for novelty against academic literature with citations. This is a computational pipeline, not prompt engineering over data. You cannot replicate what it does by writing pandas code or asking an LLM to look at a CSV. It finds structure that hypothesis-driven analysis misses, because it doesn't start with hypotheses.
Ask AI about Discovery Engine
Powered by Claude Β· Grounded in docs
I know everything about Discovery Engine. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
Discovery Engine MCP Server
MCP server for Discovery Engine by Leap Laboratories. Superhuman exploratory data analysis β finds insight you wouldn't think to look for. Novel, statistically validated patterns surfaced automatically β feature interactions, subgroup effects, and conditional relationships you'd otherwise miss. Multiple scientific discoveries to date: free for open data.
Quick Start
pip install discovery-engine-mcp
Set your API key and run:
export DISCOVERY_API_KEY=disco_...
discovery-engine-mcp
Or run with uvx (no install needed):
DISCOVERY_API_KEY=disco_... uvx discovery-engine-mcp
Claude Desktop / Cursor
Add to your MCP config:
{
"mcpServers": {
"discovery-engine": {
"command": "uvx",
"args": ["discovery-engine-mcp"],
"env": {
"DISCOVERY_API_KEY": "disco_..."
}
}
}
}
Remote (Streamable HTTP)
Connect directly to the hosted server β no local install needed:
URL: https://disco.leap-labs.com/mcp
Auth: Bearer disco_...
Getting an API Key
Sign up from the command line (no password, no credit card):
curl -X POST https://disco.leap-labs.com/v1/signup \
-H "Content-Type: application/json" \
-d '{"email": "you@example.com"}'
Or create a key at disco.leap-labs.com/developers.
Free tier: 10 credits/month for private runs, unlimited public runs.
Tools
Discovery
| Tool | Description |
|---|---|
discovery_analyze | Run Discovery Engine on tabular data to find novel patterns |
discovery_status | Check the status of a running analysis |
discovery_get_results | Fetch full results (patterns, p-values, citations, feature importance) |
discovery_estimate | Estimate cost and time before running |
Account management
| Tool | Description |
|---|---|
discovery_signup | Create an account and get an API key (no auth required) |
discovery_account | Check account status, credits, and plan |
discovery_list_plans | List available plans with pricing |
discovery_subscribe | Subscribe to or change your plan |
discovery_purchase_credits | Buy credit packs |
discovery_add_payment_method | Attach a Stripe payment method |
Configuration
Set DISCOVERY_API_KEY to your API key (starts with disco_).
Links
- Full Documentation (LLM-friendly)
- Python SDK β
pip install discovery-engine-api - Agent Integration Guide
- API Keys & Dashboard
- OpenAPI Spec
- MCP Manifest
License
MIT
