Agent-native B2B lead enrichment. Search, score, and subscribe to enriched company data with firmographics, tech stack signals, and buying intent.
Overview
What it does
Agent-native B2B lead enrichment. AI agents call three tools to find, score, and subscribe to enriched company data:
search_leads— filter by industry, funding stage, region, ICP score, buying intentvalidate_lead— check website reachability and data freshnessget_usage— see remaining monthly quota
Each lead includes firmographics (industry, stage, region, employees), tech stack signals, funding signals (hiring, recent funding, product launch), an ICP fit score 0–100, and a buying intent score 0–100.
Get an API key (free, no credit card)
curl -X POST https://energetic-upliftment-production-8bdd.up.railway.app/v1/auth/register \
-H "Content-Type: application/json" \
-d '{"email":"you@example.com"}'
Free tier: 250 leads/month. Pro: $49/month, unlimited.
Example: find AI startups with high buying intent
search_leads(
industries=["AI", "Security"],
regions=["EU"],
min_icp_score=70,
min_buying_intent=50,
max_age_days=14,
limit=10
)
Returns scored companies with structured signals — no parsing, no scraping, no rate-limit drama.
Why agent-native
- HTTP transport (no local install)
- HMAC-signed webhooks for continuous lead delivery
Idempotency-Keyheader on every POST — safe retries, no double-charging- Self-revocation via
DELETE /v1/auth/key— agents clean up after themselves - Full audit log via
get_usage— agents verify their own spend autonomously
About
Built by Compuute AB, Stockholm. EU-hosted (Railway EU, Supabase eu-west-1), GDPR Article 30 register maintained, DPA available at /v1/dpa.
Server Config
{
"mcpServers": {
"lead-enrichment": {
"type": "http",
"url": "https://energetic-upliftment-production-8bdd.up.railway.app/mcp",
"headers": {
"X-API-Key": "YOUR_API_KEY_HERE"
}
}
}
}