Outreach infrastructure for AI agents
Email and LinkedIn outreach via REST API, TypeScript SDK, and MCP tools. One API key, one client, both channels.
7-day free trial · Card required · Cancel anytime before day 7
The platform under the hood
Two channels. One platform.
Subscribe to either or both. Email-only customers stay email-only. LinkedIn-only customers stay LinkedIn-only. Customers who do multi-channel outreach get one bill, one SDK, one MCP server.
MyAgentMail
Email infrastructure for AI agents
- Provision inboxes on demand on myagentmail.com or your custom domain
- Send via REST or SMTP, receive via webhook or IMAP, threads preserved
- Workspace isolation for resellers — one tenant, many end-customers
LinkedIn Outreach
Login, search, connect — all programmatic
- Email + password login with PIN and mobile-app verification handled for you
- Keyword post search — find people posting about your topic in the last 24h
- Send personalized connection requests. AES-256-GCM encrypted at rest
How agents use it
Same SDK call shape, different channel. Switch channels by changing one method name.
Install one SDK
`npm install myagentmail`, or `npm i -g myagentmail-cli && myagentmail login` for shell + agent loops, or wire the MCP server into Claude Desktop / Cursor / Windsurf and skip the code path entirely.
Authenticate the channel
Provision an email inbox in one call, or sign in to LinkedIn with email + password (we handle challenges).
Outreach
`client.email.send(...)` for email. `client.linkedin.connections.send(...)` for LinkedIn. One key, one client.
import { MyAgentMail } from "myagentmail";
const mam = new MyAgentMail({ apiKey: process.env.MYAGENTMAIL_KEY });
// Email
const inbox = await mam.inboxes.create({ username: "scout" });
await mam.messages.send(inbox.id, {
to: "[email protected]",
subject: "Saw your post on AI agents",
plainBody: "Hey — would love 15 minutes...",
verified: true,
});
// LinkedIn — same key, same client
const { sessionId } = await mam.linkedin.sessions.import({ liAt, jsessionId });
const { posts } = await mam.linkedin.search.content({
sessionId, keyword: "AI agents", datePosted: "past-24h",
});
for (const p of posts) {
await mam.linkedin.connections.send({
sessionId, target: p.authorProfileUrl,
message: `Hey ${p.authorName.split(" ")[0]} — saw your post...`,
});
}Why one platform, not two
Outreach is rarely single-channel. Buying email and LinkedIn from one vendor saves operational glue and billing overhead — and your agent gets a uniform interface.
One API key
The same tenant key authorizes both products. No juggling credentials per channel.
One agent loop
Same SDK, same MCP tools, same response shapes. Switching channels is a method name, not a refactor.
Independent billing
Subscribe to either product alone or both together. Cancel one without affecting the other.
Already using an email API? MyAgentMail vs Resend · MyAgentMail vs SendGrid · MyAgentMail vs Instantly
What people build with it
The same email, LinkedIn, and calendar primitives power very different agents. A few of the most common.
Cold email + LinkedIn outreach infrastructure for indie hackers and small teams. Provisioned inboxes, real LinkedIn sessions, intent signals, server-side cadence engine. Drop-in alternative to Lemlist, Apollo, Instantly — with full data ownership.
Read moreGive your AI agent its own calendar: host events, send and RSVP to invites, check availability, and share a booking link — so a conversation can go all the way to a booked meeting without a human or an external calendar provider.
Read moreSource candidates from LinkedIn, message them with personalized outreach, follow up over email when a connection accepts. Reply detection, multi-account quotas, and intent signals built in.
Read moreBuild AI sales agents that actually work leads end-to-end — connect on LinkedIn, send personalized email, detect replies, branch the cadence, and follow up at the right moment. One API key, two channels, multi-tenant ready.
Read moreBuild AI customer support agents that read inbound email, draft thoughtful replies, and learn from human edits before sending. Real inbox per agent, full thread state, drafts API for human-in-the-loop.
Read moreBuild SaaS products that give each customer their own provisioned inbox and connected LinkedIn account. Workspace-isolated keys, per-tenant rate limits, scoped billing structures — multi-tenancy is first-class, not an afterthought.
Read moreSend password resets, receipts, and notifications from AI-built apps. Provisioned inbox, custom domain, ZeptoMail-backed deliverability, and per-send open + click tracking with optional opt-out for privacy-sensitive sends.
Read moreStart with whichever channel you need first.
Email is $5/mo. LinkedIn is $29/mo. Add the other later — your existing API key automatically picks it up.