# cold-email MCP server

Generate hyper-personalized cold email sequences via AI.

## Links
- Registry page: https://www.getdrio.com/mcp/io-github-bluecraft-ai-cold-email
- Repository: https://github.com/Bluecraft-AI/machfive-mcp

## Install
- Endpoint: https://mcp.machfive.io/mcp/{api_key}
- Auth: Not captured

## Setup notes
- Remote URL variable: api_key (required)
- Remote endpoint: https://mcp.machfive.io/mcp/{api_key}
- URL variable: api_key

## Tools
- list_campaigns (List Campaigns) - List campaigns in the user's MachFive workspace.

CALL THIS FIRST before generate_sequence or generate_batch — you need a
campaign ID to generate emails. If the user hasn't specified a campaign,
call this and ask them to pick one.

Returns JSON array of campaigns with id, name, and created_at.
Use the 'id' field as campaign_id in generate calls. Endpoint: https://mcp.machfive.io/mcp/{api_key}
- generate_sequence (Generate Email Sequence) - Generate a personalized cold email sequence for ONE lead.

This is SYNCHRONOUS — the request takes 3-10 minutes because MachFive
researches the prospect and crafts unique emails. Do NOT retry if it
seems slow; wait for the response.

You must have a campaign_id first. Call list_campaigns if you don't have one.
If the request times out, use the returned list_id with get_list_status
and export_list to recover results. Endpoint: https://mcp.machfive.io/mcp/{api_key}
- generate_batch (Generate Batch) - Submit multiple leads for batch email sequence generation (ASYNC).

Returns IMMEDIATELY with a list_id. Processing runs in the background.
After calling this, poll get_list_status every 15-30 seconds until
processing_status is 'completed' or 'failed', then call export_list.

You must have a campaign_id first. Call list_campaigns if you don't have one. Endpoint: https://mcp.machfive.io/mcp/{api_key}
- list_lists (List Lead Lists) - List lead lists (batch jobs) in the user's MachFive workspace.

Useful for browsing past batches, checking what's in progress, or finding
a list_id to export. Results are ordered newest first. Endpoint: https://mcp.machfive.io/mcp/{api_key}
- get_list_status (Get List Status) - Check the processing status of a lead list.

Use this to POLL after calling generate_batch. Call every 15-30 seconds
until processing_status is 'completed' or 'failed'.
When completed, call export_list. When failed, submit a new batch. Endpoint: https://mcp.machfive.io/mcp/{api_key}
- export_list (Export List) - Download the generated email sequences for a COMPLETED list.

Only call this AFTER get_list_status shows processing_status = 'completed'.
If the list is not yet completed, you'll get a 409 error — poll first. Endpoint: https://mcp.machfive.io/mcp/{api_key}

## Resources
- machfive://capabilities - MachFive MCP server capabilities, tools, and workflows. MIME type: text/plain
- machfive://lead-fields - Lead data fields and generation options accepted by MachFive. MIME type: text/plain
- machfive://pricing - MachFive pricing tiers and credit usage. MIME type: text/plain

## Prompts
- generate_cold_email - Generate a personalized cold email sequence for a single lead.

MachFive uses AI to research the prospect and craft unique, relevant
outreach — not templates. The request takes 3-10 minutes. Arguments: lead_email, lead_name, company, title, company_website, linkedin_url
- batch_email_workflow - Submit multiple leads for batch cold email generation.

Returns immediately with a list_id. Processing runs in background.
Poll for status, then export results when complete. Arguments: lead_count
- check_batch_status - Check status of a batch job and export results when ready. Arguments: list_id

## Metadata
- Owner: io.github.Bluecraft-AI
- Version: 1.0.1
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Feb 24, 2026
- Source: https://registry.modelcontextprotocol.io
