AI Agent の中で一時メールを直接使う
ChatTempMail skill を一度インストールすれば、Cursor、Claude Code、Codex、OpenClaw などの Agent に一時メールの作成、確認コードの読み取り、受信箱管理を任せられます。
Use with AI Agents — 設定不要
このプロンプトをコピーして AI coding agent に貼り付けます。Agent が npm、GitHub、ローカル skill 設定を処理します。
私の AI Agent に ChatTempMail temp-email skill をインストールしてください。npm パッケージ temp-email-skill または GitHub リポジトリ https://github.com/Selenium39/temp-email-skill を使い、私の ChatTempMail API key で TEMP_EMAIL_API_KEY を設定してください。インストール後、この skill で一時メールの作成、受信箱の確認、認証コードの読み取り、webhooks の管理を行ってください。Create disposable emails
Ask your agent for a fresh address, expiration time, or a specific domain.
Read inbox messages
Let the agent fetch messages and extract verification codes during sign-up flows.
Configure webhooks
Push new-message events to your app or test server without writing API glue first.
Keep real inboxes private
Use temporary addresses for product testing, QA, and third-party trials.
インストール方法
Start with the agent prompt if you do not want to touch npm or GitHub. The manual options are here for teams that prefer explicit setup.
AI Agent Prompt
Best for most users. Paste it into Cursor, Claude Code, Codex, OpenClaw, Windsurf, or another coding agent.
私の AI Agent に ChatTempMail temp-email skill をインストールしてください。npm パッケージ temp-email-skill または GitHub リポジトリ https://github.com/Selenium39/temp-email-skill を使い、私の ChatTempMail API key で TEMP_EMAIL_API_KEY を設定してください。インストール後、この skill で一時メールの作成、受信箱の確認、認証コードの読み取り、webhooks の管理を行ってください。NPM Package
For developers who want the package in a local project or shared toolchain.
npm install temp-email-skillGitHub Skill
For agents that install skills directly from repositories.
/plugin install Selenium39/temp-email-skillAgent が skill を使う前に
Create an API key in your ChatTempMail profile, then give it to your agent as an environment variable. The skill uses the same REST API as the dashboard and MCP Server.
Environment variable
The skill expects this key name.
export TEMP_EMAIL_API_KEY="your-api-key"適切な連携方法を選ぶ
The skill is the easiest path for agent users. MCP Server and REST API remain available when you need protocol-level or application-level control.
Agent Skill
Best for users who want to paste one prompt and let the AI agent install and use temporary email workflows.
MCP Server
Best when your AI tool supports Model Context Protocol and you want structured tool calls.
View MCP ServerREST API
Best for product integrations, backends, automation scripts, and direct HTTP calls.
View API Docs