Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

AgentTemp

БесплатноНе проверен

Enables AI agents to create temporary email inboxes and wait for OTPs, magic links, or password reset emails via AgentTemp's API, useful for automation and veri

GitHubEmbed

Описание

Enables AI agents to create temporary email inboxes and wait for OTPs, magic links, or password reset emails via AgentTemp's API, useful for automation and verification workflows.

README

MCP (Model Context Protocol) server configuration for AgentInbox - Email verification infrastructure for AI agents.

What is MCP?

Model Context Protocol (MCP) allows AI agents (Claude, Cursor, Windsurf, etc.) to directly interact with AgentInbox's API through structured tools.

Quick Setup

1. Get API Key

Create an API key from the AgentInbox Dashboard (set AGENTINBOX_API_KEY or pass --api-key).

The MCP endpoint expects the same API key format as the REST API:

Authorization: Bearer at_live_...

2. Add to Your MCP Client

Claude Desktop:

{
  "mcpServers": {
    "agentinbox": {
      "url": "https://agentinbox.in/api/mcp",
      "headers": {
        "Authorization": "Bearer at_live_..."
      }
    }
  }
}

Cursor: Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "agentinbox": {
      "url": "https://agentinbox.in/api/mcp",
      "headers": {
        "Authorization": "Bearer at_live_..."
      }
    }
  }
}

Opencode:

{
  "mcp": {
    "agentinbox": {
      "type": "remote",
      "url": "https://agentinbox.in/api/mcp",
      "enabled": true,
      "headers": {
        "Authorization": "Bearer {env:AGENTINBOX_API_KEY}"
      }
    }
  }
}

Windsurf: Add to your Cascade configuration.

3. Available Tools

Tool Description
create_inbox Create a temporary email inbox
list_inboxes List all your inboxes
get_inbox Get inbox details
delete_inbox Delete an inbox
list_messages List messages in an inbox
get_message Get a specific message
list_extractions List OTP/link extractions
wait_for_email Wait for any email
wait_for_otp Wait for OTP extraction
wait_for_magic_link Wait for magic link
wait_for_password_reset Wait for password reset link
check_wait Check wait status (non-blocking)

Responses use the public AgentInbox API schema, including camelCase fields such as emailAddress, expiresAt, inboxId, and timeoutSeconds.

Example Usage

// Agent will use these tools automatically
// Just ask: "Create a temp email and wait for the OTP"

// Behind the scenes:
const inbox = await create_inbox({ ttlSeconds: 3600 });
const wait = await wait_for_otp({ inboxId: inbox.id, timeoutSeconds: 120 });
console.log(wait.result?.value); // "123456"

Resources

License

MIT

from github.com/agentinbox-in/agentinbox-mcp

Установка AgentTemp

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/agentinbox-in/agentinbox-mcp

FAQ

AgentTemp MCP бесплатный?

Да, AgentTemp MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для AgentTemp?

Нет, AgentTemp работает без API-ключей и переменных окружения.

AgentTemp — hosted или self-hosted?

Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.

Как установить AgentTemp в Claude Desktop, Claude Code или Cursor?

Открой AgentTemp на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare AgentTemp with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории communication