RESTful API、インタラクティブなSwaggerドキュメント、Webhooks、AIエージェント向けMCP Server。プライバシー重視のメール転送をスタックに統合するために必要なすべてが揃っています。
RacterMXとの2つの統合方法
インタラクティブな試用機能付きの完全なOpenAPI 3.0仕様。ドメイン、エイリアス、メールログ、Webhooks、ブロックリスト、SMTP認証情報などを管理できます。
API Explorerを開く →AIエージェント向けModel Context Protocol Server。Claude、GPT、またはお客様独自のLLMで自然言語によるメール転送管理が可能です。
詳しく見る →2つの認証方法に対応
ダッシュボードから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/ 認証が必要です。
https://ractermx.com/api/v2# 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>" }
60+ endpoints covering domains, aliases, email sending, webhooks, blocklists, SMTP credentials, DMARC analytics, security posture, and more. All documented with interactive try-it-out.
AIが自然言語でメール転送を管理します
RacterMX MCP Serverは、すべてのAPIエンドポイントをAIエージェントが呼び出せるツールとして公開します。Claude、ChatGPT、または任意のMCP対応クライアントに接続して、会話形式でドメイン、エイリアス、メール転送を管理できます。
// 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"
Create a free account to get your API key and start integrating RacterMX in minutes.