npm @sendsoon/mcpstdioMITupdated 12d ago
SendSoon MCP is a Model Context Protocol (MCP) server that lets Codex and Claude use SendSoon capabilities: send email, look up public IPs, and convert local documents to Markdown.
Was kannst du mit sendsoon machen?
SendSoon AI MCP
English | çźäœäžæ | æ„æŹèȘ
SendSoon MCP is a Model Context Protocol (MCP) server that lets Codex and Claude use SendSoon capabilities: send email, look up public IPs, and convert local documents to Markdown.
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_email |
Send a single email | âSend me a test emailâ |
ip_lookup |
Look up public IP information | âLook up the location of 8.8.8.8â |
markitdown_convert |
Convert a local document to Markdown | âConvert this PDF to Markdownâ |
Everyday examples
Send an email to user@example.com with the subject âMeeting reminderâ and the body âThe meeting starts at 3 PM today.â
Look up the location and ISP for 8.8.8.8.
Convert /path/to/report.pdf to Markdown and summarize the key points.
If the agent does not select a tool automatically, say:
Use the sendsoon MCP to complete this task.
Install in your AI client
The instructions below cover Codex and Claude Desktop.
Codex
Config file: user-level ~/.codex/config.toml (macOS / Linux) or %USERPROFILE%\.codex\config.toml (Windows).
[mcp_servers.sendsoon]
command = "npx"
args = ["-y", "@sendsoon/mcp"]
[mcp_servers.sendsoon.env]
SENDSOON_API_KEY = ""
Verify: Save the file, restart Codex, and run /mcp in a chat. You should see sendsoon connected. In the desktop app, also check Settings > MCP servers.
First use: Start a new conversation and ask for a simple task (e.g. âLook up 8.8.8.8â). Approve the tool if Codex asks for permission.
Claude Desktop
Config file:
| OS | Path |
|---|---|
| macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | %APPDATA%\Claude\claude_desktop_config.json |
You can also open Settings > Developer > Edit Config inside Claude Desktop.
{
"mcpServers": {
"sendsoon": {
"command": "npx",
"args": ["-y", "@sendsoon/mcp"],
"env": {
"SENDSOON_API_KEY": ""
}
}
}
}
Verify: Save the file, fully quit Claude Desktop (including the system tray), then relaunch. Start a new chat and confirm sendsoon tools appear in the tools menu or settings.
First use: Claude may ask to approve tool access on the first invocation; allow it to continue.
Prepare the configuration
Optional environment variable:
| Setting | Required | What to enter |
|---|---|---|
SENDSOON_API_KEY |
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 |
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.
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.
Visual local testing (MCP Inspector)
To see all three tools in a browser and click through them manually before installing into an AI client, use the MCP Inspector.
Requires Node.js 20+. Run the command below in a terminal; Inspector opens a web UI automatically:
npx @modelcontextprotocol/inspector npx -y @sendsoon/mcp
How to test
- Wait for
MCP Inspector Web is up and runningin the terminal. If the browser does not open, paste thehttp://127.0.0.1:6274?...URL from the terminal. - Confirm the page header shows Connected.
- Open the Tools tab in the top-right area of the page.
- Select a tool from the list on the left, fill in the parameters, and click Execute Tool.
- Read the response in the Results panel on the right. On failure, inspect
error.codeanderror.message.
License
See LICENSE.
Installation
sendsoon zu deinem Client hinzufĂŒgen. WĂ€hl den, den du nutzt.
claude mcp add mcp -- npx -y @sendsoon/mcpcodex mcp add mcp -- npx -y @sendsoon/mcpamp mcp add mcp -- npx -y @sendsoon/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@sendsoon/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@sendsoon/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp","command":"npx","args":["-y","@sendsoon/mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@sendsoon/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@sendsoon/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@sendsoon/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@sendsoon/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@sendsoon/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @sendsoon/mcpRun `goose configure`, choose **Add Extension â Command-line Extension**, and paste this command.
Score
39 / 100
UnvollstÀndig
- Dokumentation25/25
- Pflege25/25
- Vertrauen13/20
- Funktionsumfang0/15
- Installation12/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 5 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
Versionsverlauf
| Versionen | Veröffentlicht |
|---|---|
| 0.3.8Aktuell | 27. Aug. 2026 |
| 0.3.7 | 27. Aug. 2026 |
| 0.3.6 | 27. Aug. 2026 |