
Forge Mcp
- 2 repo stars
- Updated July 25, 2026
- SalesforgeAI/forge-mcp
io.github.SalesforgeAI/forge-mcp is a MCP server that connects AI assistants to Salesforge, Primeforge, Leadsforge, Infraforge, Warmforge, and Mailforge through one stdio npm package.
About
forge-mcp is a Model Context Protocol server that unifies the SalesforgeAI product family behind one agent integration. developers and small GTM teams who already use Claude Code, Cursor, or similar assistants can register the server with stdio and supply API keys for whichever Forge apps they subscribe to—Salesforge for sequences, Leadsforge for leads, Infraforge and Mailforge for sending infrastructure, Warmforge for warmup, and Primeforge where applicable. The fit is intentional growth work: standing up outbound, syncing lists, and operating mail infra after you have something to sell, not replacing a CRM on day one. Because each surface uses its own secret env var, you only configure what you pay for. Compared to generic REST skills, this is a first-party MCP bridge tuned to the Forge ecosystem. Install via npm, point your client at @salesforge/forge-mcp, and let the agent call tools instead of copying payloads from dashboard UIs.
- Single MCP server spanning six Forge products: Salesforge, Primeforge, Leadsforge, Infraforge, Warmforge, and Mailforge
- stdio transport via npm package @salesforge/forge-mcp (v1.0.0)
- Per-product API keys from each app’s Settings > API (SALESFORGE, PRIMEFORGE, LEADSFORGE, INFRAFORGE, MAILFORGE)
- Agent-driven cold email, lead gen, and deliverability infra instead of juggling six browser tabs
Forge Mcp by the numbers
- Data as of Jul 26, 2026 (Skillselion catalog sync)
claude mcp add --env SALESFORGE_API_KEY=YOUR_SALESFORGE_API_KEY --env PRIMEFORGE_API_KEY=YOUR_PRIMEFORGE_API_KEY --env LEADSFORGE_API_KEY=YOUR_LEADSFORGE_API_KEY --env INFRAFORGE_API_KEY=YOUR_INFRAFORGE_API_KEY --env MAILFORGE_API_KEY=YOUR_MAILFORGE_API_KEY forge-mcp -- npx -y @salesforge/forge-mcpAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 2 |
|---|---|
| Package | @salesforge/forge-mcp |
| Transport | STDIO |
| Auth | Required |
| Last updated | July 25, 2026 |
| Repository | SalesforgeAI/forge-mcp ↗ |
What it does
Wire your coding agent into the Salesforge cold-email and lead stack so you can manage outreach, infra, and mailboxes without leaving the IDE.
Who is it for?
Best when you're running outbound on Salesforge and want agent-assisted campaign and infra tasks during growth.
Skip if: Skip if you have no Forge accounts, no outbound motion, or teams that need a full CRM replacement inside the agent.
What you get
After install, your agent can operate your Forge stack from one MCP config using product-specific API keys instead of manual dashboard work.
- Registered stdio MCP server pointing at @salesforge/forge-mcp
- Env vars for each Forge API key you enable
- Agent-callable tools across configured SalesforgeAI products
By the numbers
- Covers 6 named Forge products in one server description
- Package version 1.0.0 on npm identifier @salesforge/forge-mcp
- Up to 5 documented secret API key environment variables
README.md
Forge MCP Server
A remote MCP server that connects AI assistants to the full Salesforge product suite: Salesforge, Primeforge, Leadsforge, Infraforge, Warmforge, and Mailforge.
Built on the Model Context Protocol, works with Claude Desktop, Claude Code, Cursor, Windsurf, and any MCP-compatible client.
Supported Products
Salesforge (48 tools) - Workspaces, contacts, sequences, mailboxes, sender profiles, enrollments, webhooks, email validation, do-not-contact lists
Primeforge (22 tools) - Workspaces, domains, mailboxes, DNS management, prewarmed mailboxes
Leadsforge (12 tools) - Contact search, email/phone/LinkedIn enrichment, lookalike search
Infraforge (24 tools) - Workspaces, domains, mailboxes, DNS, domain availability, credits
Warmforge (13 tools) - Mailboxes, warmup stats, placement tests, latest mailbox placement results
Mailforge (23 tools) - Workspaces, domains, mailboxes, DNS management, domain availability, auto-renewal, domain masking, forwarding
Only provide API keys for the products you use. Tools for unconfigured products won't appear.
Quick Start
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"salesforge": {
"url": "https://mcp.salesforge.ai/mcp",
"headers": {
"X-Salesforge-Key": "YOUR_SALESFORGE_API_KEY",
"X-Primeforge-Key": "YOUR_PRIMEFORGE_API_KEY",
"X-Leadsforge-Key": "YOUR_LEADSFORGE_API_KEY",
"X-Infraforge-Key": "YOUR_INFRAFORGE_API_KEY",
"X-Warmforge-Key": "YOUR_WARMFORGE_API_KEY",
"X-Mailforge-Key": "YOUR_MAILFORGE_API_KEY"
}
}
}
}
Remove header lines for products you don't use. Restart Claude Desktop after saving.
Claude Code
claude mcp add salesforge \
--transport streamable-http \
--url https://mcp.salesforge.ai/mcp \
--header "X-Salesforge-Key: YOUR_SALESFORGE_API_KEY" \
--header "X-Primeforge-Key: YOUR_PRIMEFORGE_API_KEY" \
--header "X-Leadsforge-Key: YOUR_LEADSFORGE_API_KEY" \
--header "X-Infraforge-Key: YOUR_INFRAFORGE_API_KEY" \
--header "X-Warmforge-Key: YOUR_WARMFORGE_API_KEY" \
--header "X-Mailforge-Key: YOUR_MAILFORGE_API_KEY"
Cursor
Go to Settings > MCP and add a new server:
- Name: salesforge
- Type: streamable-http
- URL: https://mcp.salesforge.ai/mcp
- Headers: same as above
Getting API Keys
| Product | Where to get it |
|---|---|
| Salesforge | app.salesforge.ai > Settings > API |
| Primeforge | app.primeforge.ai > Settings > API |
| Leadsforge | app.leadsforge.ai > Settings > API |
| Infraforge | app.infraforge.ai > Settings > API |
| Warmforge | app.warmforge.ai > Settings > API |
| Mailforge | app.mailforge.ai > Settings > API |
Authentication Headers
| Product | Header | Format |
|---|---|---|
| Salesforge | X-Salesforge-Key |
YOUR_API_KEY |
| Primeforge | X-Primeforge-Key |
YOUR_API_KEY |
| Leadsforge | X-Leadsforge-Key |
YOUR_API_KEY |
| Infraforge | X-Infraforge-Key |
YOUR_API_KEY |
| Warmforge | X-Warmforge-Key |
YOUR_API_KEY |
| Mailforge | X-Mailforge-Key |
YOUR_API_KEY |
Multiple Accounts
If you manage multiple accounts (for example, different clients), add separate server entries:
{
"mcpServers": {
"salesforge-client-a": {
"url": "https://mcp.salesforge.ai/mcp",
"headers": {
"Authorization": "Bearer CLIENT_A_KEY"
}
},
"salesforge-client-b": {
"url": "https://mcp.salesforge.ai/mcp",
"headers": {
"Authorization": "Bearer CLIENT_B_KEY"
}
}
}
}
Each entry gets its own name and API keys. Your AI assistant sees tools from both and you specify which client to work with in your prompts.
Usage Examples
After setup, try asking your AI assistant:
- "List my Salesforge workspaces"
- "Show contacts tagged with 'enterprise' in workspace X"
- "Create a new sequence called 'Q2 Outreach'"
- "Enroll these contacts into the sequence"
- "Show my Primeforge domains"
- "Search Leadsforge for CTOs at SaaS companies in New York"
- "Check my Infraforge credit balance"
- "Show warmup stats for my mailboxes"
- "Show which Warmforge mailboxes have 100% latest placement results"
- "List my Mailforge domains"
- "Check if example.com is available on Mailforge"
Project Structure
src/
├── index.ts # stdio entry point
├── http.ts # HTTP/SSE transport entry point
├── server.ts # MCP server setup, tool registration
├── api-client.ts # HTTP client for upstream APIs
├── client.ts # legacy client
├── helpers.ts # shared utilities
└── tools/
├── identity.ts # API key validation
├── workspaces.ts # workspace management
├── contacts.ts # contact CRUD
├── mailboxes.ts # mailbox and email operations
├── sequences.ts # sequence lifecycle
├── nodes.ts # sequence node management
├── branches.ts # sequence branches
├── enrollments.ts # contact enrollment
├── sender-profiles.ts# sender profile management
├── validations.ts # email validation
├── webhooks.ts # webhook management
├── dnc.ts # do-not-contact lists
├── custom-vars.ts # custom variables
├── reference.ts # action/condition type lookups
├── primeforge/ # domain, mailbox, workspace tools
├── leadsforge/ # search, enrichment, lookalike tools
├── infraforge/ # domain, mailbox, credit tools
├── warmforge/ # mailbox, placement test tools
└── mailforge/ # workspace, domain, mailbox tools
Self-Hosting
If you prefer to run your own instance:
npm install
npm run build
npm run start:http
The server listens on port 3000 by default. API keys are passed as headers per request, not as environment variables.
License
MIT
Recommended MCP Servers
How it compares
First-party sales-stack MCP integration, not a generic REST skill or inbox-only email plugin.
FAQ
Who is io.github.SalesforgeAI/forge-mcp for?
Developers and small teams already on SalesforgeAI products who want Claude Code, Cursor, or Codex to manage outreach and related Forge services via MCP.
When should I use io.github.SalesforgeAI/forge-mcp?
Use it in the Grow phase when you are operating cold email, leads, warmup, or mail infra and want agent-driven actions instead of repetitive dashboard clicks.
How do I add io.github.SalesforgeAI/forge-mcp to my agent?
Add the @salesforge/forge-mcp npm package as a stdio MCP server in your client config and set SALESFORGE_API_KEY plus any other Forge API keys you use from each app’s Settings > API.