Golddigger DiggerKit — B2B Lead Intelligence API
Search, enrich & score 10M+ global B2B leads via MCP. 12+ endpoints (search_leads, enrich_company, score_lead, hunter_lookup, apollo_search, etc.) backed by Apollo/Hunter/Voovox/Serp. Free 3 preview leads, paid plans from $29/mo. Streamable-HTTP transport, works in Claude Code/Cursor/VS Code/Claude Desktop.
Documentation
Golddigger MCP Server
B2B Lead Intelligence API — search, enrich & score 10M+ global companies from any MCP-compatible client.
What is this?
A Model Context Protocol (MCP) server that wraps the Golddigger API — giving AI assistants (Claude, Cline, Cursor, etc.) the ability to search, enrich, and score B2B leads in real time.
3 tools exposed:
| Tool | Description |
|---|---|
search_leads(keyword, limit) | Search 10M+ global companies by name, industry, product, country |
enrich_company(company) | Get full contact details: email, phone, address, source |
score_lead(company, source) | Rate lead quality hot/warm/cold (0-100 score) |
Installation
git clone https://github.com/SassumiX/golddigger-mcp.git
cd golddigger-mcp
pip install -r requirements.txt
Configuration
Set your API key as an environment variable:
export GOLDIGGER_API_KEY="golddigger_2024" # Get yours at https://golddigger.gold
export GOLDIGGER_HOST="https://golddigger.geodinvest.com"
Usage
Claude Desktop (macOS)
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"golddigger": {
"command": "python3",
"args": ["/FULL/PATH/TO/golddigger-mcp/server.py", "--transport", "stdio"]
}
}
}
Restart Claude Desktop.
Cline / Other MCP Clients
{
"mcpServers": {
"golddigger": {
"command": "uvicorn",
"args": ["server:app", "--host", "0.0.0.0", "--port", "8080"],
"env": {
"GOLDIGGER_API_KEY": "golddigger_2024"
}
}
}
}
HTTP Endpoint
./start.sh http 8080
# Or directly
python3 server.py --transport streamable-http --port 8080
API Endpoints (Direct REST)
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/leads/search?q=&limit= | Search leads |
| GET | /api/leads/enrich?company= | Enrich company |
| GET | /api/leads/score?company=&source= | Score lead |
Base URL: https://golddigger.geodinvest.com
Pricing
| Plan | Leads | Rate Limit | Period |
|---|---|---|---|
| Free | 3 previews | 10/day | Forever |
| Super | 50,000 | 100/day | 90 days |
| Premium | 1,000,000 | Unlimited | 365 days |
| Buyout | Self-host + FDE setup | — | — |
Get your key at https://golddigger.gold
License
MIT — SassumiX 2026