npm sentfromai-mcpstdioMITupdated 29d ago
MCP server for SentFromAI — email infrastructure for AI agents.
sentfrom 能做什么?
sentfromai-mcp
MCP server for SentFromAI — email infrastructure for AI agents.
Gives any MCP-capable agent (Claude Code, Claude Desktop, OpenClaw, or your own MCP host) email as native tools: create inboxes, send, reply, forward, search, read threads, manage drafts, custom domains, webhooks, and allow/block rules — 21 tools, each a thin wrapper over the SentFromAI REST API.
Let your agent install it
Paste this into your agent (OpenClaw, Claude Code, any MCP-capable agent):
Set up SentFromAI email for yourself: fetch https://docs.sentfrom.ai/agent-install.md
and follow it. Ask me for the API key when you need it.
Manual setup
You need a SentFromAI API key (sf_live_…) from the dashboard.
Claude Code
claude mcp add sentfromai --env SENTFROMAI_API_KEY=sf_live_… -- npx -y sentfromai-mcp
Claude Desktop / any JSON-config MCP host
{
"mcpServers": {
"sentfromai": {
"command": "npx",
"args": ["-y", "sentfromai-mcp"],
"env": { "SENTFROMAI_API_KEY": "sf_live_…" }
}
}
}
OpenClaw
openclaw mcp add sentfromai --command npx --arg -y --arg sentfromai-mcp
then add SENTFROMAI_API_KEY to the server's env in ~/.openclaw/openclaw.json.
Full guide: docs.sentfrom.ai/frameworks/openclaw.
Tools
| Area | Tools |
|---|---|
| Inboxes | create_inbox · list_inboxes · delete_inbox |
| Messages | send_message · reply_to_message · forward_message · get_message · search_messages |
| Threads | list_threads · get_thread |
| Drafts | create_draft · send_draft · list_drafts |
| Domains | add_domain · get_domain |
| Webhooks | create_webhook · list_webhooks · delete_webhook |
| Allow/block | add_address_rule · list_address_rules · delete_address_rule |
Replies thread correctly (In-Reply-To/References set automatically), search supports keyword, semantic, and hybrid modes, and sends respect the same idempotency and suppression rules as the REST API.
Configuration
| Env var | Required | Default |
|---|---|---|
SENTFROMAI_API_KEY |
yes | — |
SENTFROMAI_BASE_URL |
no | https://api.sentfrom.ai |
Docs
安装
把 sentfrom 添加到你的客户端。选择你正在使用的那个。
claude mcp add sentfromai-mcp -- npx -y sentfromai-mcpcodex mcp add sentfromai-mcp -- npx -y sentfromai-mcpamp mcp add sentfromai-mcp -- npx -y sentfromai-mcp{
"mcpServers": {
"sentfromai-mcp": {
"command": "npx",
"args": [
"-y",
"sentfromai-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"sentfromai-mcp": {
"command": "npx",
"args": [
"-y",
"sentfromai-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"sentfromai-mcp","command":"npx","args":["-y","sentfromai-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"sentfromai-mcp": {
"command": "npx",
"args": [
"-y",
"sentfromai-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"sentfromai-mcp": {
"command": "npx",
"args": [
"-y",
"sentfromai-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"sentfromai-mcp": {
"command": "npx",
"args": [
"-y",
"sentfromai-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"sentfromai-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"sentfromai-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"sentfromai-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"sentfromai-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y sentfromai-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
评分
39 / 100
不完整
- 文档22/25
- 维护19/25
- 可信度13/20
- 能力0/15
- 安装体验12/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 21 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
版本历史
| 版本 | 发布于 |
|---|---|
| 0.3.0最新 | 2026年8月10日 |