SendSoon AI MCP
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@SendSoon AI MCPLook up the location and ISP for 8.8.8.8"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SendSoon AI MCP
Use SendSoon email, IP lookup, and file-to-Markdown capabilities from Codex, Claude, Cursor, and other AI agents.
Configure it once, then describe tasks in natural language. You usually do not need to mention SendSoon in every prompt.
What you can do
Tool | Purpose | Example |
| Send a single email | “Send me a test email” |
| Look up public IP information | “Look up the location of 8.8.8.8” |
| Convert a file to Markdown | “Convert this PDF to Markdown” |
Related MCP server: Gmail & Google Docs MCP Server
Try it in Google Colab
Skip local setup and try ip_lookup, markitdown_convert, and send_email in the browser.
The notebook calls the same SendSoon HTTP APIs used by these MCP tools. To use them from Cursor, Claude, or Codex, continue with the local MCP setup below.
Step 1: Check the requirements
Node.js 20 or later
Codex, Claude, Cursor, or another client that supports local stdio MCP servers
There is nothing to install by hand. Every configuration below starts the server with npx, which downloads @sendsoon/ai on first use and reuses the cached copy afterwards.
If you prefer to run from a local checkout, see Build from source.
Step 2: Prepare the configuration
All clients use the same environment variables:
Setting | Required | What to enter |
| Yes | Replace |
| No | Leave empty for an unregistered trial. One public IP can send up to three free test emails per day. Enter your generated Key for continued use |
| No | Defaults to |
Never commit a real Key to Git or share it with anyone.
Get an API Key
Sign up or sign in on the SendSoon registration page.
Open Profile and generate a Key in the API Key section.
Copy the one-time
ssk_live_...Key immediately and enter it asSENDSOON_API_KEYin your MCP configuration.Save the configuration and restart your MCP client. Requests with a valid Key do not use the anonymous IP daily quota.
If the anonymous quota is exhausted, send_email will tell you to register and configure a Key. An invalid or revoked Key is rejected and does not fall back to the anonymous quota.
Step 3: Choose your client
Cursor
Open Settings > Tools & MCP in Cursor and add an MCP server. You can also save the following configuration as .cursor/mcp.json in your project or ~/.cursor/mcp.json in your user directory:
{
"mcpServers": {
"sendsoon": {
"command": "npx",
"args": ["-y", "@sendsoon/ai"],
"env": {
"SENDSOON_EMAIL_RECIPIENT": "<YOUR_EMAIL>",
"SENDSOON_API_KEY": ""
}
}
}
}Use only one top-level mcpServers object. Save the file, reopen Cursor, and confirm that sendsoon is enabled.
Codex
Open the user configuration file at ~/.codex/config.toml and add:
[mcp_servers.sendsoon]
command = "npx"
args = ["-y", "@sendsoon/ai"]
[mcp_servers.sendsoon.env]
SENDSOON_EMAIL_RECIPIENT = "<YOUR_EMAIL>"
SENDSOON_API_KEY = ""Save the file and reopen Codex. Use /mcp to confirm that sendsoon is connected. In the desktop app, you can also check Settings > MCP servers.
Claude Code
Replace the placeholder and run:
claude mcp add --transport stdio --scope user --env SENDSOON_EMAIL_RECIPIENT=<YOUR_EMAIL> sendsoon -- npx -y @sendsoon/aiRun /mcp in Claude Code and confirm that sendsoon is connected. To use an API Key, add --env SENDSOON_API_KEY=<SENDSOON_API_KEY> before the sendsoon server name.
Claude Desktop
Open the configuration file from Settings > Developer and add:
{
"mcpServers": {
"sendsoon": {
"command": "npx",
"args": ["-y", "@sendsoon/ai"],
"env": {
"SENDSOON_EMAIL_RECIPIENT": "<YOUR_EMAIL>",
"SENDSOON_API_KEY": ""
}
}
}
}Save the file, fully quit and restart Claude Desktop, and confirm that sendsoon appears in the tool list.
Other MCP clients
For Windsurf, Cline, Continue, or another client that supports local stdio MCP servers, enter:
Setting | Value |
Transport |
|
Command |
|
Arguments |
|
Environment | The environment variables listed above |
Confirm that it works
Restart the client, open a new conversation, and enter:
Look up the location and ISP for 8.8.8.8.The MCP connection works if the agent calls ip_lookup and returns the result.
To test email, enter:
Send a test email to <YOUR_EMAIL> with the subject “SendSoon MCP test” and the body “Configuration successful.”The address must exactly match SENDSOON_EMAIL_RECIPIENT. Your client may ask for permission the first time a tool runs; approve it to continue.
Everyday examples
Look up information about 1.1.1.1.Convert <YOUR_FILE_PATH> to Markdown and summarize the key points.Send an email to <YOUR_EMAIL> with the subject “Meeting reminder” and the body “The meeting starts at 3 PM today.”If the agent does not select a tool automatically, say:
Use the sendsoon MCP to complete this task.You usually need this explicit instruction only on the first use.
Agent Skills
This repository also ships Agent Skills that teach agents when to reach for each tool and how to handle its error codes. In Claude Code, install them as a plugin:
/plugin marketplace add sendsoon/ai
/plugin install sendsoon-skills@sendsoonYou can also copy any folder under skills/ into .claude/skills/ in your project or ~/.claude/skills/ in your user directory.
Build from source
Only needed if you want to modify the server or run an unreleased revision. Requires pnpm 11.
git clone https://github.com/sendsoon/ai.git
cd ai
pnpm install
pnpm run build
pnpm run bundleThen point your client at the built entry file instead of npx, using the absolute path printed by:
(Resolve-Path .\mcp\bin\sendsoon-mcp.mjs).Path.Replace('\', '/')realpath ./mcp/bin/sendsoon-mcp.mjsUse "command": "node" with that absolute path as the only argument. Run pnpm run check to lint and test your changes.
Official references
License
See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables creating temporary email inboxes and sending emails through the AgentMail API, allowing AI agents to manage email communications programmatically.1
- FlicenseNot gradedqualityCmaintenanceEnables AI assistants to send emails via Gmail and append text to Google Docs or local files.
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to send and receive emails via POP3 and SMTP, with tools for polling, reading, deleting, and sending emails.1
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to interact with email accounts via IMAP and SMTP, supporting mailbox listing, email search, retrieval, sending, and management.MIT
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Email for AI agents — send, receive as a webhook, manage domains, templates, routing.
Authenticated email gateway for AI agents — per-agent inboxes, HITL approval, SPF/DKIM verified.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sendsoon/ai'
If you have feedback or need assistance with the MCP directory API, please join our Discord server