npm sendableme-mcpstdioMITupdated 1mo ago
One line, and your app knows how to talk to its users.
What can you do with sendable?
Sendable
One line, and your app knows how to talk to its users.
You describe what happened; Sendable writes the message and sends it. No templates to maintain, no dashboard step — your data is never rewritten, only the words around it.
npm i sendableme
import { send } from 'sendableme';
await send('sam@example.com', 'order_shipped', { orderId: 'A-1042', eta: 'Friday' });
That's a complete integration. Adding a new message type is a new string.
Get a free API key at sendable.me/keys — 500 messages a month, no card.
Try it in your browser
One click imports the SaaS-welcome example and runs it on Replit — add your
SENDABLE_API_KEY in Secrets and hit Run:
What's in this repo
| Directory | What it is |
|---|---|
sdk/ |
The sendableme npm package — the client SDK |
mcp/ |
sendableme-mcp — an MCP server, so Claude and Cursor can send email by asking |
templates/ |
Three runnable examples against the live API |
Your data is never rewritten
The model that writes the copy never sees your values — only your field names. It
writes copy containing {{placeholders}}, and your values are substituted
afterwards, so a price, a date, or a reset link cannot be altered. A second model
checks every draft for claims your data doesn't support and refuses rather than
guess.
await send(user.id, 'payment_failed', { amount: '$99.00' });
// "$99.00" appears exactly as written, always
MCP
npx -y sendableme-mcp
Add it to Claude Desktop or Cursor and send transactional email straight from the
editor. See mcp/ for the config block.
Docs
Full reference, written to be pasted into an AI assistant: sendable.me/llms.txt
License
MIT
Install
Add sendable to your client. Pick the one you use.
claude mcp add sendableme-mcp -- npx -y sendableme-mcpcodex mcp add sendableme-mcp -- npx -y sendableme-mcpamp mcp add sendableme-mcp -- npx -y sendableme-mcp{
"mcpServers": {
"sendableme-mcp": {
"command": "npx",
"args": [
"-y",
"sendableme-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"sendableme-mcp": {
"command": "npx",
"args": [
"-y",
"sendableme-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"sendableme-mcp","command":"npx","args":["-y","sendableme-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"sendableme-mcp": {
"command": "npx",
"args": [
"-y",
"sendableme-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"sendableme-mcp": {
"command": "npx",
"args": [
"-y",
"sendableme-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"sendableme-mcp": {
"command": "npx",
"args": [
"-y",
"sendableme-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"sendableme-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"sendableme-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"sendableme-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"sendableme-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y sendableme-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance22/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 41 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.3Latest | Jul 20, 2026 |
| 1.0.2 | Jul 20, 2026 |
| 1.0.1 | Jul 20, 2026 |