agentinbox-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@agentinbox-mcpShow me my open support conversations."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AgentInbox MCP
The safe support inbox for AI agents running e-commerce and DTC stores. Give your agent a real customer-support inbox — with a seatbelt.
agentinbox.dev · Docs · llms.txt · agents.md
What is this?
AI agents can write brilliant customer-support replies for your store. What they can't do:
Hold a persistent inbox that receives email 24/7 while they're offline
Manage deliverability, DKIM, threading, and deduplication
Be trusted to hit "send" unsupervised
AgentInbox sells exactly that missing layer:
Provisioned inboxes —
yourbrand@in.agentinbox.dev, forward your support@ address to itStructured conversations — inbound email is thread-stripped, deduplicated, and intent-classified (WISMO, refunds, upsell interest, escalation…)
Guardrailed sending —
send_safe_replyblocks false promises, strips non-whitelisted URLs, and queues with a human-like 8–20 min delayTwo-stage escalation — only verified-genuine escalations reach the human owner
Upsell engine — ownership-aware offer injection that turns support into revenue (and suppresses offers during refunds/price objections)
This repo contains the open-source MCP server (stdio) and TypeScript SDK. The hosted email infrastructure and guardrails engine run at agentinbox.dev — grab a free API key (1 inbox, 50 replies/month, no card).
Related MCP server: CommerceHub MCP
Quickstart
Remote MCP (recommended — nothing to install)
{
"mcpServers": {
"agentinbox": {
"type": "streamable-http",
"url": "https://agentinbox.dev/mcp",
"headers": { "Authorization": "Bearer aik_live_YOUR_KEY" }
}
}
}Local stdio via npx
{
"mcpServers": {
"agentinbox": {
"command": "npx",
"args": ["-y", "@agentinbox/mcp", "--api-key", "aik_live_YOUR_KEY"]
}
}
}TypeScript SDK
import { AgentInbox } from "@agentinbox/mcp";
const client = new AgentInbox({ apiKey: process.env.AGENTINBOX_API_KEY! });
const { conversations } = await client.listConversations({ status: "open" });
const { conversation, messages } = await client.getConversation(conversations[0].id);
const result = await client.sendSafeReply({
conversationId: conversation.id,
body: "Hi Maria, thanks for reaching out! ...",
});
if (result.blocked) {
console.log("Guardrails blocked it:", result.reason, result.hint);
}MCP tools
Tool | Description |
| List provisioned inbox addresses |
| List/filter conversations |
| Full history + intent + customer context |
| Reply through the guardrails engine |
| Route serious cases to the owner |
| Teach the platform business facts |
For OpenClaw users
Install the skill from SKILL.md or ClawHub, set AGENTINBOX_API_KEY, and your agent handles support email autonomously.
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
An AI agent that runs your online business: products, orders, customers, email, and sites.
Stateful email for AI agents — read inboxes, reply in-thread, draft with approval.
Customer-context and ops layer for AI agents
Commerce intelligence for AI agents. Diagnose drop-offs, fix checkouts, optimize pricing.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables customer support across e-commerce platforms by providing order management, product guidance, and account assistance tools through natural language queries.5MIT
- AlicenseCqualityDmaintenanceEnables AI agents to manage e-commerce operations across multiple platforms (Shopify, WooCommerce, Stripe, MercadoLibre) through a conversational interface.418 npmMIT
- FlicenseNot gradedqualityBmaintenanceEnables AI agents to investigate and resolve e-commerce order exceptions like damages, lost shipments, refunds, and replacements through a unified interface with built-in guardrails.-
- FlicenseNot gradedqualityCmaintenanceEnables AI agents to provide e-commerce customer service with product search, RAG-based FAQ answers, human handoff, and automated security auditing with a review workflow.-