ai

mcp
Guvenlik Denetimi
Uyari
Health Uyari
  • License — License: MIT
  • Description — Repository has a description
  • Active repo — Last push 0 days ago
  • Low visibility — Only 6 GitHub stars
Code Uyari
  • fs module — File system access in core/package.json
  • process.env — Environment variable access in core/src/config.ts
Permissions Gecti
  • Permissions — No dangerous permissions requested

Bu listing icin henuz AI raporu yok.

SUMMARY

MCP server for SendSoon — send email, IP lookup, and file-to-Markdown from AI agents.

README.md

SendSoon AI MCP

English | 简体中文 | 日本語

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_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 file to Markdown “Convert this PDF to Markdown”

Try it in Google Colab

Skip local setup and try ip_lookup, markitdown_convert, and send_email in the browser.

Open in Colab

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: Install

Requirements:

  • Node.js 20 or later
  • pnpm 11
  • Codex, Claude, Cursor, or another client that supports local stdio MCP servers

Run these commands in a terminal:

git clone https://github.com/sendsoon/ai.git
cd ai
pnpm install
pnpm run build

After the build finishes, get the absolute path to the MCP entry file.

Windows PowerShell:

(Resolve-Path .\mcp\dist\index.js).Path.Replace('\', '/')

macOS / Linux:

realpath ./mcp/dist/index.js

Copy the command output and use it to replace <MCP_ENTRY_PATH> in the configuration. Enter the full path to the index.js file—not the path to the ai folder—and do not leave <MCP_ENTRY_PATH> unchanged.

For example, if the command prints:

C:/Users/your-name/ai/mcp/dist/index.js

Change this:

"args": ["<MCP_ENTRY_PATH>"]

to this:

"args": ["C:/Users/your-name/ai/mcp/dist/index.js"]

The same applies on macOS / Linux:

"args": ["/Users/your-name/ai/mcp/dist/index.js"]

Step 2: Prepare the configuration

All clients use the same three environment variables:

Setting What to enter
SENDSOON_API_BASE_URL Keep https://sendsoonai.com
SENDSOON_EMAIL_RECIPIENT Replace <YOUR_EMAIL> with your recipient address
SENDSOON_API_KEY 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

  1. Sign up or sign in on the SendSoon registration page.
  2. Open Profile and generate a Key in the API Key section.
  3. Copy the one-time ssk_live_... Key immediately and enter it as SENDSOON_API_KEY in your MCP configuration.
  4. 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": "node",
      "args": ["<MCP_ENTRY_PATH>"],
      "env": {
        "SENDSOON_API_BASE_URL": "https://sendsoonai.com",
        "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 = "node"
args = ["<MCP_ENTRY_PATH>"]

[mcp_servers.sendsoon.env]
SENDSOON_API_BASE_URL = "https://sendsoonai.com"
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 two placeholders and run:

claude mcp add --transport stdio --scope user --env SENDSOON_API_BASE_URL=https://sendsoonai.com --env SENDSOON_EMAIL_RECIPIENT=<YOUR_EMAIL> sendsoon -- node "<MCP_ENTRY_PATH>"

Run /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": "node",
      "args": ["<MCP_ENTRY_PATH>"],
      "env": {
        "SENDSOON_API_BASE_URL": "https://sendsoonai.com",
        "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 stdio
Command node
Arguments <MCP_ENTRY_PATH>
Environment The three 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.

Official references

License

See LICENSE.

Yorumlar (0)

Sonuc bulunamadi