BlastEngine Email
STDIOTypeScript-based MCP server that implements email sending system.
TypeScript-based MCP server that implements email sending system.
Blastengine APIを使用してメールを送信するModel Context Protocol (MCP) サーバー
このJavaScriptベースのMCPサーバーは、LLM(大規模言語モデル)がBlastengine APIを通じてメールを送信できるようにします。
send_email
- Blastengine APIを使用してメールを送信
to
: 送信先メールアドレスfrom
: 送信元メールアドレスsubject
: メールの件名text
: メール本文依存関係のインストール:
npm install
サーバーのビルド:
npm run build
開発時の自動リビルド:
npm run watch
Claude Desktopで使用するには、以下の設定ファイルにサーバー設定を追加します:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
{ "mcpServers": { "blastengine-mailer": { "command": "node", "env": { "BLASTENGINE_USER_ID": "userid-of-blastengine", "BLASTENGINE_API_KEY": "apikey-of-blastengine" }, "args": [ "/path/to/blastengine-mailer/server.js" ] } } }
MCPサーバーはstdio経由で通信するため、デバッグが困難な場合があります。MCP Inspectorの使用を推奨します:
npm run inspector
インスペクターは、ブラウザでデバッグツールにアクセスするためのURLを提供します。
Claude Desktopで設定後、以下のようにメールを送信できます:
「[email protected]に『テストメール』という件名でメールを送信して」
このプロジェクトはプライベートプロジェクトです。