streamable-httpupdated 1mo ago
The MCP-native API that AI agents use to enrich B2B company profiles with structured data.
What can you do with B2B Lead Enrichment?
B2B Lead Enrichment MCP API
The MCP-native API that AI agents use to enrich B2B company profiles with structured data.
Live Production URL
https://lead-enrichment-mcp.agent-infra.workers.dev
Status: Live and accepting requests
Quick Start
# Test the API
curl https://lead-enrichment-mcp.agent-infra.workers.dev/health
# Enrich a company (replace with your API key)
curl -X POST https://lead-enrichment-mcp.agent-infra.workers.dev/mcp \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"enrich_lead","arguments":{"domain":"stripe.com"}}}'
Pricing
| Tier | Monthly | Price | Overage |
|---|---|---|---|
| Free | 100 enrichments | $0 | N/A |
| Pro | 10,000 enrichments | $49/month | $0.05/enrichment |
| Enterprise | Unlimited | Contact us | Custom |
Billing: Only for successful, high-confidence enrichments (confidence > 0.6). No charge for failed or low-quality enrichments.
Get an API Key
- Visit https://lead-enrichment-mcp.agent-infra.workers.dev
- Sign up for free tier or upgrade
- Copy your API key
MCP-Native for AI Agents
This API is built on the Model Context Protocol (MCP), making it natively discoverable and callable by AI agents like Claude, Cursor, and ChatGPT.
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"lead-enrichment": {
"command": "npx",
"args": ["-y", "@anthropic-ai/mcp-server-lead-enrichment"],
"env": {
"API_KEY": "your-api-key-here"
}
}
}
}
Cursor
Add in Cursor Settings > MCP > Add New Server:
{
"mcpServers": {
"lead-enrichment": {
"type": "http",
"url": "https://lead-enrichment-mcp.agent-infra.workers.dev/mcp",
"headers": {
"Authorization": "Bearer your-api-key-here"
}
}
}
}
VS Code Copilot
Create .vscode/mcp.json:
{
"servers": {
"lead-enrichment": {
"transport": "streamable-http",
"url": "https://lead-enrichment-mcp.agent-infra.workers.dev/mcp",
"headers": {
"Authorization": "Bearer your-api-key-here"
}
}
}
}
ChatGPT GPTs
Use the OpenAPI schema:
https://lead-enrichment-mcp.agent-infra.workers.dev/openapi.json
API Endpoints
| Method | Endpoint | Description |
|---|---|---|
| POST | /mcp |
MCP JSON-RPC endpoint |
| GET | /health |
Health check |
| GET | /.well-known/mcp-server.json |
MCP Server Card |
| GET | /openapi.json |
OpenAPI 3.1 spec |
| GET | /docs |
Human-readable docs |
| GET | /test/enrich?domain=stripe.com |
Test endpoint (auth required) |
Example Response
For stripe.com:
{
"companyName": "Stripe, Inc.",
"industry": "Fintech",
"employeeCount": "5000+",
"revenue": "$1B+",
"technologies": [
"React",
"Ruby on Rails",
"PostgreSQL",
"Redis",
"Kubernetes",
"AWS"
],
"intentSignals": [
"Recently hired 3 Sales VPs in Q2 2026",
"Expanding EU operations with new Dublin office"
],
"confidenceScore": 0.95,
"enrichedAt": "2026-06-19T12:00:00.000Z",
"insights": [
"High buying intent: Recently hired multiple sales VPs indicating expansion phase",
"Enterprise-grade requirements suggest need for robust security and compliance features",
"European expansion signals potential need for multi-currency and regional compliance"
]
}
The enrich_lead Tool
When to Use
- Qualify a lead before outreach
- Research a company before a sales call
- Enrich a list of companies for a campaign
- Understand a prospect's technology stack
- Detect buying intent signals
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
domain |
string | Yes | Company domain (e.g., "stripe.com") |
attributes |
string[] | No | Data types: firmographic, technographic, intent, contacts |
requiredFields |
string[] | No | Fields that must be present |
Error Handling
All errors follow RFC 9457 Problem Details format:
{
"type": "https://api.lead-enrichment-mcp.com/errors/rate-limit-exceeded",
"title": "Rate Limit Exceeded",
"detail": "You have exceeded the rate limit...",
"status": 429,
"extensions": {
"code": "RATE_LIMIT_EXCEEDED",
"retry_after": 60
}
}
Rate Limits
| Tier | Burst | Sustained |
|---|---|---|
| Free | 10 req/sec | 5 req/sec |
| Pro | 50 req/sec | 20 req/sec |
Development
# Install dependencies
npm install
# Start local dev server
npm run dev
# Deploy
npm run deploy
Tech Stack
- Hono (TypeScript) - Fast, lightweight web framework
- Cloudflare Workers - Edge runtime
- Zod - Schema validation with .describe() annotations
- MCP SDK - Model Context Protocol
- Stripe - Metered billing
License
MIT
Install
Add B2B Lead Enrichment to your client. Pick the one you use.
claude mcp add --transport http b2b-lead-enrichment https://lead-enrichment-mcp.agent-infra.workers.dev/mcpcodex mcp add b2b-lead-enrichment --url https://lead-enrichment-mcp.agent-infra.workers.dev/mcp{
"mcpServers": {
"b2b-lead-enrichment": {
"url": "https://lead-enrichment-mcp.agent-infra.workers.dev/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"b2b-lead-enrichment": {
"type": "http",
"url": "https://lead-enrichment-mcp.agent-infra.workers.dev/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"b2b-lead-enrichment": {
"url": "https://lead-enrichment-mcp.agent-infra.workers.dev/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"b2b-lead-enrichment": {
"serverUrl": "https://lead-enrichment-mcp.agent-infra.workers.dev/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance16/25
- Trust6/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 49 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Jul 17, 2026 |