
Instantly
STDIOMCP server for Instantly.ai email automation with HTML paragraph formatting
MCP server for Instantly.ai email automation with HTML paragraph formatting
A streamlined MCP server for Instantly.ai v2 API integration. Enables AI assistants to manage email campaigns, accounts, leads, and analytics through Instantly's platform.
The Instantly MCP Server brings Instantly.ai's email automation capabilities directly into Claude and other AI assistants. This enables AI-powered management of:
Perfect for sales teams, marketers, and developers who want to integrate email automation into their AI workflows.
Add to your MCP settings configuration:
{ "mcpServers": { "instantly": { "command": "npx", "args": ["instantly-mcp", "--api-key", "YOUR_INSTANTLY_API_KEY"] } } }
npm install npm run build
{ "mcpServers": { "instantly": { "command": "node", "args": ["/path/to/instantly-mcp/dist/index.js", "--api-key", "YOUR_INSTANTLY_API_KEY"] } } }
list_campaigns
- List all campaigns with optional filters and paginationget_campaign
- Get details of a specific campaigncreate_campaign
- Create new email campaignsupdate_campaign
- Update an existing campaignactivate_campaign
- Activate a campaignget_campaign_analytics
- Get analytics for campaignsget_campaign_analytics_overview
- Get analytics overview for all campaignslist_accounts
- List sending accountscreate_account
- Create a new sending accountupdate_account
- Update a sending accountget_warmup_analytics
- Get warmup analytics for an accountlist_leads
- List leads with filters and paginationcreate_lead
- Create a new leadupdate_lead
- Update a leadmove_leads
- Move leads between campaigns or listslist_lead_lists
- List all lead lists with paginationcreate_lead_list
- Create a new lead listsend_email
- Send a single emaillist_emails
- List emails with filters and paginationverify_email
- Verify if an email address is validlist_api_keys
- List all API keyscreate_api_key
- Create a new API keyOnce configured, you can use natural language to interact with Instantly:
# Install dependencies npm install # Run in development mode npm run dev -- --api-key YOUR_API_KEY # Build for production npm run build
# Install dependencies npm install # Run the test script tsx test-endpoints.ts --api-key YOUR_API_KEY
# Build the project npm run build # Test with MCP Inspector npx @modelcontextprotocol/inspector dist/index.js -- --api-key YOUR_API_KEY
{ "mcpServers": { "instantly": { "command": "node", "args": ["/absolute/path/to/dist/index.js", "--api-key", "YOUR_API_KEY"] } } }
The MCP server includes all major Instantly v2 API endpoints:
For full API documentation, visit: https://developer.instantly.ai/
MIT
See CHANGELOG.md for complete version history.
Pull requests are welcome! Please ensure all tests pass and follow the existing code style.
git checkout -b feature/amazing-feature
)git commit -m 'Add some amazing feature'
)git push origin feature/amazing-feature
)This package is automatically published to npm when a new version tag is pushed:
npm version patch|minor|major git push --tags
See CHANGELOG.md for a list of changes.
Created by bcharleson