# Minelead.io

```json
{
  "name": "Minelead.io",
  "slug": "minelead",
  "url": "https://composio.dev/toolkits/minelead",
  "markdown_url": "https://composio.dev/toolkits/minelead.md",
  "logo_url": "https://logos.composio.dev/api/minelead",
  "categories": [
    "sales & customer support"
  ],
  "is_composio_managed": false,
  "updated_at": "2026-08-20T15:33:09.095Z"
}
```

![Minelead.io logo](https://logos.composio.dev/api/minelead)

## Description

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Minelead.io MCP or direct API to discover emails, verify addresses, enrich leads, and analyze buying intent through natural language.

## Summary

Minelead.io is a sales intelligence API for email discovery, verification, enrichment, lead management, buying-intent analysis, and campaign recipient workflows.
It helps sales teams find better prospects, validate contact data, and act on buyer signals faster.

## Categories

- sales & customer support

## Toolkit Details

- Tools: 10

## Images

- Logo: https://logos.composio.dev/api/minelead

## Authentication

- **Api Key**
  - Type: `api_key`
  - Description: Api Key authentication for Minelead.io.
  - Setup:
    - Configure Api Key credentials for Minelead.io.
    - Use the credentials when creating an auth config in Composio.

## Suggested Prompts

- Find verified emails for Acme prospects
- Enrich new leads with company data
- Analyze buying intent for target accounts

## Supported Tools

| Tool slug | Name | Description |
|---|---|---|
| `MINELEAD_DETECT_DISPOSABLE_EMAIL` | Detect Disposable Email | Check an email for disposable-address, DNS, format, and spam signals. Minelead does not document this endpoint's credit cost, so callers should treat it as potentially credit-consuming. HTTP 200 application errors fail the call; only completed results are returned. |
| `MINELEAD_ENRICH_EMAIL` | Enrich Email | Enrich one email with professional and social profile information. Minelead charges 2 credits per request. A no-match result is returned with status `not_found`; application errors reported inside HTTP 200 responses fail the call. |
| `MINELEAD_FIND_PERSON_EMAIL` | Find Person Email | Find a person's professional email from their name and company domain. A found result costs 1 credit; Minelead documents no charge when no email or only bouncing emails are returned. Catch-all domains return a completed no-result instead of an execution error. |
| `MINELEAD_FIND_SOCIAL_PROFILE_EMAILS` | Find Social Profile Emails | Find emails associated with a YouTube channel or Twitter/X profile URL. Results may be masked and are locally capped by max_emails_to_return; the response reports truncation. Minelead charges 2 credits only when emails are found and no charge when none are found. |
| `MINELEAD_GENERATE_COMPANY_DOMAINS` | Generate Company Domains | Generate candidate company domains from keyword and location tags. A successful request costs 1 credit, and returned domains may be masked. |
| `MINELEAD_LIST_SAVED_LEADS` | List Saved Leads | List leads already saved in the connected Minelead account. Minelead documents no credit cost for this read. The verified no-leads response is returned as an empty list, while application-level errors fail the execution. |
| `MINELEAD_LIST_SEARCH_HISTORY` | List Search History | Return up to 25 entries from the connected account's search history. Minelead does not document a credit cost for this read. Use the returned cursor to continue; a verified no-history response marks the end. |
| `MINELEAD_SEARCH_COMPANY_EMAILS` | Search Company Emails | Find known email addresses for a company domain. Results may include masked addresses. A successful standard search costs 1 credit; Deep Search and inline enrichment are not included. |
| `MINELEAD_SEARCH_COMPANY_EMAILS_BATCH` | Search Company Emails Batch | Search 1-8 company domains in one call and return a result for each domain. Results may include masked addresses. Each successful domain search costs 1 credit, so one batch can cost up to 8 credits. |
| `MINELEAD_VALIDATE_EMAIL` | Validate Email | Validate an email's format, MX records, mailbox result, personal-provider status, and disposability. Minelead charges 1 credit per verification. HTTP 200 may contain an application failure; `catch-all` is a valid verification outcome and `exists` may be `unknown`. |

## Supported Triggers

None listed.

## Installation and MCP Setup

### Path 1: SDK Installation

#### Path 1, Step 1: Install Composio

Install the Composio SDK
```python
pip install composio_openai
```

```typescript
npm install @composio/openai
```

#### Path 1, Step 2: Initialize Composio and Create Tool Router Session

Import and initialize Composio client, then create a Tool Router session
```python
from openai import OpenAI
from composio import Composio
from composio_openai import OpenAIResponsesProvider

composio = Composio(provider=OpenAIResponsesProvider())
openai = OpenAI()
session = composio.create(user_id='your-user-id')
```

```typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
```

#### Path 1, Step 3: Execute Minelead.io Tools via Tool Router with Your Agent

Get tools from Tool Router session and execute Minelead.io actions with your Agent
```python
tools = session.tools
response = openai.responses.create(
  model='gpt-4.1',
  tools=tools,
  input=[{
    'role': 'user',
    'content': 'Find and verify work emails for sales leaders at Acme Corp'
  }]
)
result = composio.provider.handle_tool_calls(
  response=response,
  user_id='your-user-id'
)
print(result)
```

```typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'Find and verify work emails for sales leaders at Acme Corp'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
```

### Path 2: MCP Server Setup

#### Path 2, Step 1: Install Composio

Install the Composio SDK for Python or TypeScript
```python
pip install composio claude-agent-sdk
```

```typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
```

#### Path 2, Step 2: Initialize Client and Create Tool Router Session

Import and initialize the Composio client, then create a Tool Router session for Minelead.io
```python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
```

```typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });
const session = await composio.create('your-user-id');
console.log(`Tool Router session created: ${session.mcp.url}`);
```

#### Path 2, Step 3: Connect to AI Agent

Use the MCP server with your AI agent (Anthropic Claude or Mastra)
```python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to Minelead.io tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Enrich the lead john@example.com and analyze buying intent for their company')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
```

```typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: session.mcp.url,
    headers: {
      'x-api-key': 'your-composio-api-key',
    },
  },
});

const tools = await client.tools();
const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{
    role: 'user',
    content: 'Enrich the lead john@example.com and analyze buying intent for their company'
  }],
  maxSteps: 5,
});

console.log(`Agent: ${text}`);
```

## Why Use Composio?

### 1. AI Native Minelead.io Integration

- Supports both Minelead.io MCP and direct API based integrations
- Structured, LLM-friendly schemas for reliable email discovery, verification, enrichment, and intent workflows
- Rich coverage for reading, writing, and querying Minelead.io lead and campaign data

### 2. Managed Auth

- Securely store and manage Minelead.io API keys without hard-coding secrets in your agent code
- Central place to manage, scope, and revoke Minelead.io access across users and environments
- Per user and per environment credentials for safer sales automation workflows

### 3. Agent Optimized Design

- Tools are tuned using real error and success rates to improve reliability over time
- Clear tool schemas help agents choose the right Minelead.io action for discovery, verification, enrichment, or buying-intent tasks
- Comprehensive execution logs so you always know what ran, when, and on whose behalf

### 4. Enterprise Grade Security

- Fine-grained RBAC so you control which agents and users can access Minelead.io
- Scoped, least privilege access to Minelead.io resources and sales data
- Full audit trail of agent actions to support review, compliance, and revenue operations governance

## Use Minelead.io with any AI Agent Framework

Choose a framework you want to connect Minelead.io with:

None listed.

## Related Toolkits

- [Aeroleads](https://composio.dev/toolkits/aeroleads) - Aeroleads is a B2B lead generation platform for finding business emails and phone numbers. Grow your sales pipeline faster with powerful prospecting tools.
- [Autobound](https://composio.dev/toolkits/autobound) - Autobound is an AI-powered sales engagement platform that crafts hyper-personalized outreach and insights. It helps sales teams boost response rates and close more deals through tailored content and recommendations.
- [Better proposals](https://composio.dev/toolkits/better_proposals) - Better Proposals is a web-based tool for crafting and sending professional proposals. It helps teams impress clients and close deals faster with slick, easy-to-use templates.
- [Bidsketch](https://composio.dev/toolkits/bidsketch) - Bidsketch is a proposal software that helps businesses create professional proposals quickly and efficiently. It streamlines the proposal process, saving time while boosting client win rates.
- [Bolna](https://composio.dev/toolkits/bolna) - Bolna is an AI platform for building conversational voice agents. It helps businesses automate support and streamline interactions through natural, voice-powered conversations.
- [Botdog](https://composio.dev/toolkits/botdog) - Botdog is a LinkedIn outreach platform for managing campaigns, leads, messages, analytics, and sending accounts. It helps sales teams run outbound workflows and track performance from one place.
- [BotPenguin](https://composio.dev/toolkits/botpenguin) - BotPenguin is an AI chatbot platform for customer messaging, contacts, and conversations. It helps teams manage bot-led support and lead engagement across channels.
- [Botsonic](https://composio.dev/toolkits/botsonic) - Botsonic is a no-code AI chatbot builder for easily creating and deploying chatbots to your website. It empowers businesses to offer conversational experiences without writing code.
- [Botstar](https://composio.dev/toolkits/botstar) - BotStar is a comprehensive chatbot platform for designing, developing, and training chatbots visually on Messenger and websites. It helps businesses automate conversations and customer interactions without coding.
- [Callerapi](https://composio.dev/toolkits/callerapi) - CallerAPI is a white-label caller identification platform for branded caller ID and fraud prevention. It helps businesses boost customer trust while stopping spam, fraud, and robocalls.
- [Callingly](https://composio.dev/toolkits/callingly) - Callingly is a lead response management platform that automates immediate call and text follow-ups with new leads. It helps sales teams boost response speed and close more deals by connecting seamlessly with CRMs and lead sources.
- [Callpage](https://composio.dev/toolkits/callpage) - Callpage is a lead capture platform that lets businesses instantly connect with website visitors via callback. It boosts lead generation and increases your sales conversion rates.
- [Charla](https://composio.dev/toolkits/charla) - Charla is a live chat and AI customer-support platform for property teams. It helps manage guest conversations, property contacts, and support knowledge.
- [Chatforma](https://composio.dev/toolkits/chatforma) - Chatforma is a chatbot automation platform for building and managing bots. It helps teams run dialogs, segments, broadcasts, forms, and user updates from one place.
- [Clearout](https://composio.dev/toolkits/clearout) - Clearout is an AI-powered service for verifying, finding, and enriching email addresses. It boosts deliverability and helps you discover high-quality leads effortlessly.
- [Clientary](https://composio.dev/toolkits/clientary) - Clientary is a platform for managing clients, invoices, projects, proposals, and more. It streamlines client work and saves you serious admin time.
- [Convolo ai](https://composio.dev/toolkits/convolo_ai) - Convolo ai is an AI-powered communications platform for sales teams. It accelerates lead response and improves conversion rates by automating calls and integrating workflows.
- [Crisp](https://composio.dev/toolkits/crisp) - Crisp is a customer messaging platform for live chat, contacts, helpdesk, and campaigns. It helps support teams manage customer conversations from one shared workspace.
- [Delighted](https://composio.dev/toolkits/delighted) - Delighted is a customer feedback platform based on the Net Promoter System®. It helps you quickly gather, track, and act on customer sentiment.
- [Docsbot ai](https://composio.dev/toolkits/docsbot_ai) - Docsbot ai is a platform that lets you build custom AI chatbots trained on your documentation. It automates customer support and content generation, saving time and improving response quality.

## Frequently Asked Questions

### Do I need my own developer credentials to use Minelead.io with Composio?

Yes, Minelead.io requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

### Can I use multiple toolkits together?

Yes! Composio's Tool Router enables agents to use multiple toolkits. [Learn more](https://docs.composio.dev/tool-router/overview).

### Is Composio secure?

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. [Learn more](https://trust.composio.dev).

### What if the API changes?

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

---
[See all toolkits](https://composio.dev/toolkits) · [Composio docs](https://docs.composio.dev/llms.txt)
