LeadBrew MCP Server
Enables OpenAI Codex or ChatGPT to access LeadBrew's B2B lead database through REST API calls for lead search, company lookup, and usage tracking.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@LeadBrew MCP ServerFind CTOs at fintech companies in New York"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
LeadBrew MCP Server
LeadBrew MCP Server is a Model Context Protocol server that gives AI coding assistants access to the LeadBrew B2B lead database. Search for leads, get contact information, and find companies—all through natural language.
Features
Millions of B2B Leads - Access verified business contacts with emails and phone numbers
Company Database - Search companies by industry, size, and location
Real-time Search - Find leads by name, title, company, or industry
Free Tier - 100 leads/day included with every account
Works Everywhere - Compatible with Claude Code, Cursor, Windsurf, and more
Related MCP server: FlashLeads MCP Server
Quick Start
1. Get Your API Credentials
Sign up at leadbrew.co
Go to Settings → API Access
Click Generate API Key
Save your
API KeyandAPI Secret
2. Install the MCP Server
# Clone the repository
git clone https://github.com/FlatNineOrg/leadbrew-mcp.git
cd leadbrew-mcp
# Install dependencies
npm install
# Build the server
npm run build3. Configure Your AI Assistant
See configuration instructions for your specific assistant.
Supported Assistants
Claude Code (Anthropic)
Add to ~/.claude/claude_desktop_config.json:
{
"mcpServers": {
"leadbrew": {
"command": "node",
"args": ["/path/to/leadbrew-mcp/dist/index.js"],
"env": {
"LEADBREW_API_KEY": "lb_your_api_key_here",
"LEADBREW_API_SECRET": "your_api_secret_here"
}
}
}
}Cursor
Add to your Cursor MCP settings (Settings → MCP Servers):
{
"leadbrew": {
"command": "node",
"args": ["/path/to/leadbrew-mcp/dist/index.js"],
"env": {
"LEADBREW_API_KEY": "lb_your_api_key_here",
"LEADBREW_API_SECRET": "your_api_secret_here"
}
}
}Windsurf
Add to your Windsurf configuration:
{
"mcpServers": {
"leadbrew": {
"command": "node",
"args": ["/path/to/leadbrew-mcp/dist/index.js"],
"env": {
"LEADBREW_API_KEY": "lb_your_api_key_here",
"LEADBREW_API_SECRET": "your_api_secret_here"
}
}
}
}Cline / Roo Code
Add to your VS Code settings:
{
"cline.mcpServers": {
"leadbrew": {
"command": "node",
"args": ["/path/to/leadbrew-mcp/dist/index.js"],
"env": {
"LEADBREW_API_KEY": "lb_your_api_key_here",
"LEADBREW_API_SECRET": "your_api_secret_here"
}
}
}
}OpenAI Codex / ChatGPT
For OpenAI-based assistants, use the REST API directly. See REST API examples.
Available Tools
Tool | Description |
| Search for leads by name, company, industry, position, country |
| Get full lead details including emails and phone numbers |
| Search for companies by name, industry, size |
| Get company details with employee list |
| Check your API quota and usage statistics |
Examples
Finding Decision Makers
You: Find CTOs at fintech companies in New York
AI: [Searches using leadbrew_search_leads]
Found 156 leads matching your criteria:
**John Smith**
Position: Chief Technology Officer
Company: PayFlow Inc (Fintech)
Country: US
LinkedIn: https://linkedin.com/in/johnsmith
Lead ID: TGVhZGJyZXdtaWtlXzEyMzQ1
**Sarah Johnson**
Position: CTO
Company: BlockPay Solutions (Fintech)
Country: US
LinkedIn: https://linkedin.com/in/sarahjohnson
Lead ID: TGVhZGJyZXdtaWtlXzY3ODkw
... and 154 more resultsGetting Contact Information
You: Get the contact details for John Smith
AI: [Uses leadbrew_get_lead with the lead ID]
**John Smith**
Position: Chief Technology Officer
Company: PayFlow Inc (Fintech)
Country: US
LinkedIn: https://linkedin.com/in/johnsmith
Emails:
- john.smith@payflow.com
- jsmith@payflow.io
Phones:
- +1 (555) 123-4567Building a Lead List
You: Find 10 marketing directors at SaaS companies with 50-200 employees
AI: [Searches with position="Marketing Director", industry="SaaS", min_size=50, max_size=200]
Found 89 leads. Here are the first 10:
1. **Emily Chen** - Marketing Director at CloudMetrics (Software/SaaS)
2. **Michael Brown** - Director of Marketing at DataSync Pro (SaaS)
3. **Jessica Williams** - Marketing Director at AppFlow Systems (SaaS)
...Researching Companies
You: Tell me about Stripe's team
AI: [Uses leadbrew_get_company with include_employees=true]
**Stripe**
Website: stripe.com
Industry: Financial Technology
Size: 8,000+ employees
LinkedIn: https://linkedin.com/company/stripe
Employees in database: 234
Sample employees:
- Patrick Collison (CEO)
- John Collison (President)
- Claire Hughes Johnson (COO)
- David Singleton (CTO)
- Dhivya Suryadevara (CFO)Checking Your Quota
You: How many leads do I have left today?
AI: [Uses leadbrew_usage]
**LeadBrew API Usage**
Today's Usage:
Leads used: 45/100
Leads remaining: 55
Requests made: 12
Last 7 Days:
Total leads: 312
Total requests: 89Tool Reference
leadbrew_search_leads
Search for B2B leads with various filters.
Parameters:
Parameter | Type | Description |
| string | Search query for lead name |
| string | Filter by company name |
| string | Filter by industry |
| string | Filter by job title |
| string | Country code (US, UK, DE, etc.) |
| number | Results per page (1-25) |
| number | Page number |
leadbrew_get_lead
Get detailed information about a specific lead.
Parameters:
Parameter | Type | Required | Description |
| string | Yes | Lead ID from search results |
Returns: Full lead profile including emails and phone numbers.
leadbrew_search_companies
Search for companies in the database.
Parameters:
Parameter | Type | Description |
| string | Company name search |
| string | Filter by industry |
| string | Country code |
| number | Minimum employee count |
| number | Maximum employee count |
| number | Results per page (1-25) |
| number | Page number |
leadbrew_get_company
Get company details with optional employee list.
Parameters:
Parameter | Type | Required | Description |
| string | Yes | Company ID or LinkedIn handle |
| boolean | No | Include employee list |
leadbrew_usage
Check your API usage and quota.
Parameters:
Parameter | Type | Description |
| number | Days of history (1-90) |
Rate Limits
Limit | Value |
Daily lead quota | 100 leads |
Max per request | 25 leads |
Company searches | Unlimited |
Rate limit reset | Midnight UTC |
REST API
You can also use the LeadBrew REST API directly:
curl -X GET "https://leadbrew.co/api/v1/leads?q=john&industry=Technology&limit=10" \
-H "X-API-Key: lb_your_api_key" \
-H "X-API-Secret: your_api_secret"See examples/rest-api.md for more REST API examples.
Troubleshooting
"API credentials not configured"
Make sure your environment variables are set correctly:
LEADBREW_API_KEYshould start withlb_LEADBREW_API_SECRETshould be 64 characters
"Rate limit exceeded"
You've used your daily quota of 100 leads. The limit resets at midnight UTC.
"Invalid API credentials"
Check that:
Your API key is active (not revoked)
The key and secret match
No extra spaces in your configuration
Support
Documentation: leadbrew.co/api-docs
Issues: GitHub Issues
Email: support@leadbrew.co
License
MIT License - See LICENSE for details.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/FlatNineOrg/leadbrew-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server