开发工具 RacterMX

RESTful API、交互式 Swagger 文档、Webhook 以及用于 AI 智能体的 MCP 服务器。将隐私优先邮件转发集成到您的技术栈所需的一切。

开始使用

两种集成方式

📡

REST API + Swagger

完整的 OpenAPI 3.0 规范,支持交互式测试。管理域名、别名、邮件日志、Webhook、黑名单、SMTP 凭据等。

打开 API 资源管理器 →
🤖

MCP 服务器

用于 AI 智能体的模型上下文协议 (MCP) 服务器。让 Claude、GPT 或您自己的大模型通过自然语言管理邮件转发。

了解更多 →

认证

支持两种身份验证方式

🔑 API 密钥(推荐)

从仪表板生成 API 密钥。在 Authorization 标头中将其作为 Bearer 令牌传递。

Authorization: Bearer sk_live_abc123...

🍪 会话验证

适用于基于浏览器的集成。通过 Web 登录进行验证,并使用带有 CSRF 令牌的会话 Cookie。

Cookie: ractermx_session=abc123; X-CSRF-TOKEN: ...

秒速发送邮件

RacterMX API 遵循 RESTful 规范。JSON 输入,JSON 输出。所有端点位于 /api/v2/ 下,且需要身份验证。

  • 基础 URL: https://ractermx.com/api/v2
  • Content-Type: application/json
  • 速率限制:100 次请求/分钟
  • 所有时间戳均为 UTC (ISO 8601)
# Send an email via the RacterMX API
curl -X POST https://ractermx.com/api/v2/emails/send \
  -H "Authorization: Bearer sk_live_abc123" \
  -H "Content-Type: application/json" \
  -d '{
    "from": "hello@yourdomain.com",
    "to": ["user@example.com"],
    "subject": "Hello from RacterMX",
    "html": "<h1>It works!</h1>"
  }'

# Response
{
  "success": true,
  "message_id": "<abc123@yourdomain.com>"
}

API 端点参考

60+ endpoints covering domains, aliases, email sending, webhooks, blocklists, SMTP credentials, DMARC analytics, security posture, and more. All documented with interactive try-it-out.

📖 完整交互式文档 (Swagger)

用于 AI 智能体的 MCP 服务器

让 AI 通过自然语言管理您的邮件转发

模型上下文协议 (MCP)

RacterMX MCP 服务器将每个 API 端点暴露为 AI 智能体可以调用的工具。将其连接到 Claude、ChatGPT 或任何兼容 MCP 的客户端,即可通过对话管理域名、别名和邮件转发。

  • 管理域名和别名
  • 搜索和过滤邮件日志
  • 创建并测试 Webhook
  • 监控统计数据和配额
  • 配置 SMTP 凭据
  • 管理黑名单和保留策略
// Add to your MCP client config
{
  "mcpServers": {
    "ractermx": {
      "command": "npx",
      "args": ["@ractermx/mcp-server"],
      "env": {
        "RACTERMX_API_KEY": "sk_live_abc123"
      }
    }
  }
}

// Then ask your AI agent:
"List all my domains on RacterMX"
"Create an alias catch-all@mydomain.com"
"Show me email logs from the last hour"

Ready to build?

Create a free account to get your API key and start integrating RacterMX in minutes.