で構築 RacterMX

RESTful API、インタラクティブなSwaggerドキュメント、Webhooks、AIエージェント向けMCP Server。プライバシー重視のメール転送をスタックに統合するために必要なすべてが揃っています。

はじめる

RacterMXとの2つの統合方法

📡

REST API + Swagger

インタラクティブな試用機能付きの完全なOpenAPI 3.0仕様。ドメイン、エイリアス、メールログ、Webhooks、ブロックリスト、SMTP認証情報などを管理できます。

API Explorerを開く →
🤖

MCPサーバー

AIエージェント向けModel Context Protocol Server。Claude、GPT、またはお客様独自のLLMで自然言語によるメール転送管理が可能です。

詳しく見る →

認証

2つの認証方法に対応

🔑 API Key(推奨)

ダッシュボードからAPI Keyを生成してください。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 Server

AIが自然言語でメール転送を管理します

Model Context Protocol

RacterMX MCP Serverは、すべてのAPIエンドポイントをAIエージェントが呼び出せるツールとして公開します。Claude、ChatGPT、または任意のMCP対応クライアントに接続して、会話形式でドメイン、エイリアス、メール転送を管理できます。

  • ドメインとエイリアスを管理
  • メールログの検索とフィルタリング
  • Webhooksの作成とテスト
  • 統計とクォータの監視
  • 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.