Woodpecker
Manage email campaigns on Woodpecker using natural language.
Woodpecker MCP Server
The Woodpecker MCP (Model Context Protocol) integration transforms cold email campaign management into a conversational experience.
By connecting your AI assistant to Woodpecker's powerful automation platform, you can create, manage and optimize email campaigns through natural language interactions.
Start with simple commands like listing campaigns and creating basic outreach sequences. Then gradually explore advanced features like A/B testing, complex follow-up sequences and detailed analytics reporting.
Features
- Campaign Management: Create, update, run, pause and delete email campaigns
- Prospect Operations: Add prospects to your account and campaigns, update and delete prospect data, search prospects
- Email Composition: Create multistep email sequences with A/B testing capabilities
- Analytics & Reporting: Retrieve campaign statistics and performance metrics
- Mailbox Integration: Assign email accounts to campaigns
- Advanced Configuration: Support for delivery schedules, timezone settings and GDPR compliance
Installation
Prerequisites
Before setting up the integration, ensure you have:
- Woodpecker Account: An account with the API & Integration add-on enabled
- API Credentials: Woodpecker API key (found in your account settings)
- Docker: Installed on your system (for running the MCP server) https://docs.docker.com/desktop/
- AI Agent: Claude Desktop, Continue.dev or another MCP-compatible AI platform
Getting Your Woodpecker API Key
- Log in to the Woodpecker account (https://login.woodpecker.co/)
- Go to the Marketplace in the top-right corner → Integrations → 'API keys'
- Click
Create a key
AI Agent Configuration
Claude Desktop
Step 1: Locate Configuration File
Find your Claude Desktop configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Windows:
%APPDATA%\Claude\claude_desktop_config.json
Linux:
~/.config/Claude/claude_desktop_config.json
Step 2: Add MCP Server Configuration
Edit the configuration file to include the Woodpecker MCP server:
{
"mcpServers": {
"woodpecker": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"WOODPECKER_API_KEY",
"woodpeckerco/woodpecker-mcp-server"
],
"env": {
"WOODPECKER_API_KEY": "<YOUR_API_KEY>"
}
}
}
}
Step 3: Restart Claude Desktop
- Quit Claude Desktop completely
- Restart the application
- Look for the Woodpecker tools in the interface
Other MCP-Compatible Agents
For other AI platforms that support MCP:
- Ensure MCP Support: Verify your AI agent supports the Model Context Protocol
- Authentication: Provide Woodpecker API credentials (
WOODPECKER_API_KEY
) through environment variables - Protocol: Use stdio transport as supported by your agent
Verification and Testing
In your AI agent, try asking:
"What Woodpecker tools do you have access to?"
"List my Woodpecker campaigns"
Troubleshooting
MCP Server Not Connecting
Symptoms: AI agent can't access Woodpecker tools
Solutions:
- Try absolute Docker path (e.g.
/usr/local/bin/docker
) in MCP Server Configuration - Check if Docker container is running:
docker ps
- Test API key: Make direct API call to Woodpecker
Invalid API Credentials
Symptoms: "Unauthorized" or "Invalid API key" errors
Solutions:
- Regenerate API key in Woodpecker settings
- Update environment variables with new key
- Restart AI Agent application
Tools Not Available
Symptoms: AI agent doesn't see Woodpecker functions
Solutions:
- Check MCP server configuration in AI agent
- Restart AI agent application
- Check AI agent logs for MCP connection errors
Campaign Creation Fails
Symptoms: Error when creating campaigns
Solutions:
- Ensure you have at least one email account configured in Woodpecker
- Verify email account IDs with
listMailboxes
function - Check campaign parameters match required format
- Ensure daily enrollment limit is > 0
Usage Examples
Creating Your First Campaign
"Create a new email campaign with these details:
- Name: Product Demo Outreach
- Subject: Quick demo of our new feature
- Message: Hi {{FIRST_NAME}}, I'd love to show {{COMPANY}} our new feature. Are you available for a 15-minute demo?
- Send Monday-Friday, 9 AM to 5 PM
- Daily limit: 25 prospects
- Use my main email account"
Adding Prospects in Bulk
"Add these prospects to campaign 12345:
1. John Doe, john@example.com, Example Corp, Marketing Director
2. Jane Smith, jane@example.com, Tech Solutions, CEO
3. Bob Johnson, bob@example.com, Startup Inc, CTO
Use this personalization for each:
- John: 'I saw your recent blog post about email marketing'
- Jane: 'Congratulations on your recent funding round'
- Bob: 'Your product launch looked impressive'"
Campaign Management
"Pause campaign 12345 and show me its performance statistics"
"Update campaign 'Product Demo Outreach' to send only 15 prospects per day"
"Add a follow-up email to campaign 12345 that sends 3 days after the first email"
Analytics and Reporting
"Show me statistics for all my running campaigns"
"Which campaign has the highest open rate?"
"Create a summary report of my campaign performance this month"
Best Practices
Campaign Management
- Start Small: Test with 5-10 prospects before scaling
- Monitor Performance: Check statistics regularly
- Respect Limits: Stay within daily enrollment limits
- A/B Testing: Use multiple email versions for optimization
Prospect Data
- Data Quality: Ensure email addresses are valid
- Personalization: Use meaningful snippets and custom fields
- Segmentation: Organize prospects with tags and industries
- Compliance: Include unsubscribe links and respect opt-outs
AI Agent Interactions
- Be Specific: Provide clear instructions for campaign creation
- Verify Results: Check campaign details before running
- Use Examples: Include sample content and personalization
- Monitor Automation: Review AI-generated campaigns before deployment
Support
Contact Woodpecker Support Team at Woodpecker Support
License
Permission is granted to use this Docker image for personal and commercial purposes. Redistribution, modification and reverse engineering are prohibited. No warranty is provided.
Copyright 2025 Woodpecker.co S.A.
Available Tools
Campaign Management
createCampaign
Create campaigns with basic configuration including subjects, messages and delivery settings. Supports full templating with snippets, fallbacks and spintax for personalized content.
Parameters:
name
(string): Campaign namesubjects
(array): Email subject linesmessages
(array): Email body contentemailAccountIds
(array): SMTP account IDstimezone
(string): Campaign timezonedailyEnroll
(number): Daily prospect enrollment limitdeliveryDays
(array): Days of the week for sendingdeliveryTimeStart/Stop
(string): Sending time windowtrackOpens
(boolean): Enable open tracking
createAdvancedCampaign
Create campaigns with full API capabilities including A/B testing and complex delivery schedules.
Parameters:
campaignPayload
(string): Complete campaign configuration JSON
listCampaigns
Retrieve campaigns with optional status filtering.
Parameters:
pageNumber
(number): Page number (1-based)statuses
(array): Filter by status (RUNNING, DRAFT, PAUSED, STOPPED, COMPLETED)
retrieveCampaignDetails
Get detailed campaign structure including all steps and configurations.
Parameters:
campaignId
(number): Campaign ID
retrieveCampaignStatistics
Fetch campaign performance metrics and analytics.
Parameters:
campaignId
(number): Campaign ID
updateCampaignSettings
Modify campaign-wide settings including name, email accounts, daily limits and timezone.
Parameters:
campaignId
(number): Campaign IDname
(string): Campaign nameemailAccountIds
(array): List of email account IDstimezone
(string): Campaign timezonedailyEnroll
(number): Daily enrollment limit
buildCampaignUrl
Generate Woodpecker app URL for campaign access.
Parameters:
campaignId
(number): Campaign ID
Campaign Control
runCampaign(campaignId)
: Start campaign executionpauseCampaign(campaignId)
: Pause campaignstopCampaign(campaignId)
: Stop campaigndeleteCampaign(campaignId)
: Remove campaign entirelymakeCampaignEditable(campaignId)
: Enable campaign modifications
Email Step Management
addStep
Add follow-up steps to existing campaigns.
Parameters:
campaignId
(number): Campaign IDpayload
(string): Step configuration JSON
updateCampaignStep
Modify step delivery times and scheduling.
Parameters:
campaignId
(number): Campaign IDstepId
(string): Step IDpayload
(string): Updated delivery configuration
updateStepVersion
Update email content, subject lines, signatures and tracking settings.
Parameters:
campaignId
(number): Campaign IDstepId
(string): Step IDversionId
(string): Version IDsubject
(string): Email subjectmessage
(string): Email body (HTML supported)signature
(string): SENDER or NO_SIGNATUREtrackOpens
(boolean): Enable open tracking
deleteCampaignStep
Remove steps from campaigns.
Parameters:
campaignId
(number): Campaign IDstepId
(string): Step ID
Prospect Operations
addProspectsToDatabase
Adds new prospects to your global prospect list without enrolling them in any campaign.
Parameters:
prospectsPayload
(string): JSON array of prospect data
Notes:
- Prospects are added to your account but not to any campaign
- Available for future campaign enrollment
- Useful for building a prospect database before campaign creation
addProspectsToCampaign
Bulk add prospects with full contact information and custom snippets.
Parameters:
campaignId
(number): Campaign IDprospectsPayload
(string): Array of prospect objects
Note: Always check for DUPLICATE
prospects in response. Use updateProspectsInCampaign
for duplicates if data updates are needed.
updateProspectsInDatabase
Updates existing prospects in your global database or adds new ones if they don't exist.
Parameters:
prospectsPayload
(string): JSON array of prospect data with updates
Notes:
- Existing prospects are updated based on email address
- New prospects are added if email doesn't exist
- Only include fields you want to update
- Updates apply globally (affects all campaigns using these prospects)
updateProspectsInCampaign
Update existing prospect data (requires explicit user request).
Parameters:
campaignId
(number): Campaign IDprospectsPayload
(string): Array of prospect objects with updates
listProspectsInDatabase
Lists prospects from your global prospect database (not tied to any specific campaign).
Parameters:
pageNumber
(integer): Page number (1-based indexing)
Notes:
- Returns paginated results of all prospects in your account
- These prospects can be added to any campaign
- Useful for managing your overall prospect database
listProspectsInCampaign
Paginated retrieval of campaign prospects.
Parameters:
campaignId
(number): Campaign IDpageNumber
(number): Page number (1-based)
searchProspects
Searches for prospects that match specific criteria across your entire database.
Parameters:
pageNumber
(integer): Page number (1-based indexing)searchCriteria
(object, optional): JSON object with search parametersfilterCriteria
(object, optional): JSON object with additional filters
Available search fields:
email
- Email addressfirst_name
- First namelast_name
- Last namecompany
- Company nameorganization_id
- Organization IDindustry
- Industrywebsite
- Website URLtags
- Tags (case-sensitive, without leading #)title
- Job titlephone
- Phone numberaddress
- Street addresscity
- Citystate
- State/Provincecountry
- Countrysnippet1
throughsnippet15
- Custom fields
Available filter fields:
id
- Comma-separated list of prospect IDsstatus
- Prospect's global status: ACTIVE, BOUNCED, REPLIED, BLACKLIST, INVALIDcampaigns_id
- Comma-separated list of campaign IDs that prospects are enrolled incontacted
- Whether a prospect has ever been contactedinterested
- Interest level: INTERESTED, MAYBE-LATER, NOT-INTERESTED, NOT-MARKED
Notes:
- Tag searching is case-sensitive, don't use leading # when searching by tags
- Search criteria uses OR for same field, AND for different fields
- To filter OPT-OUT prospects, use "BLACKLIST" status
- Multiple filter values are comma-separated
deleteProspects
Permanently deletes prospects from your database and/or specific campaigns.
Parameters:
prospectIds
(string): Comma-separated list of prospect IDs to deletecampaignIds
(string, optional): Comma-separated list of campaign IDs from which to remove prospects
Notes:
- Without campaignIds: Deletes prospects globally from your entire database
- With campaignIds: Removes prospects only from specified campaigns
- This action is permanent and cannot be undone
- Requires explicit user confirmation before execution
- Use prospect IDs (not email addresses) obtained from list/search operations
Warning: Global deletion removes prospects from all campaigns and your database. Local deletion (with campaignIds) only removes them from specified campaigns while keeping them in your global database.
Account Management
listMailboxes
Retrieve available email accounts for campaign assignment.
Parameters: None
Changelog
v0.0.9 (2025-07-28)
- Internal improvements and bug fixes
v0.0.8 (2025-06-24)
- Added global prospects list tools
v0.0.7 (2025-06-11)
- Initial release with campaigns related tools
Documentation
- Woodpecker API: https://developers.woodpecker.co/docs/
- MCP Protocol: https://modelcontextprotocol.io
- Claude Desktop: https://claude.ai/download
Related Servers
OpenAI Speech-to-Text
Transcribe audio files using OpenAI's Speech-to-Text API.
PubNub
Access PubNub SDK documentation and API resources for real-time communication applications.
Beyond MCP Server
Provides standardized access to social platform and onchain data using the Neynar API.
Ntfy
An ntfy MCP server for sending/fetching ntfy notifications to your self-hosted ntfy server from AI Agents 📤 (supports secure token auth & more - use with npx or docker!)
NotifyMeMaybe
A server for sending multi-platform notifications and creating interactive AI workflows, with support for Telegram, webhooks, and synchronous user interactions.
SimpleChatJS
A lightweight AI chat application with MCP support, built with pure JavaScript and Node.js.
AivisSpeech
A server for text-to-speech generation using the AivisSpeech engine.
Bark MCP Server
Send iOS push notifications using the Bark app.
Teams MCP
Interact with Microsoft Teams, users, and organizational data via the Microsoft Graph API.
Outlook MCP Server
Read, search, and manage emails in Microsoft Outlook through a standardized interface.