agentinbox-mcp
Click on "Install 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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables customer support across e-commerce platforms by providing order management, product guidance, and account assistance tools through natural language queries.4MIT
- AlicenseCqualityDmaintenanceEnables AI agents to manage e-commerce operations across multiple platforms (Shopify, WooCommerce, Stripe, MercadoLibre) through a conversational interface.4116MIT
- Alicense-qualityDmaintenanceEnables AI agents to manage Shopify stores via natural language, with tools for products, orders, inventory, customers, and analytics.6MIT
- Flicense-qualityBmaintenanceEnables 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.
Related MCP Connectors
Authenticated email gateway for AI agents — per-agent inboxes, HITL approval, SPF/DKIM verified.
Authenticated email gateway for AI agents — per-agent inboxes, HITL approval, SPF/DKIM verified.
Email OS for agents - real-inbox search, triage, commitments, and a verifiable BEC hard-stop.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/adsman888/agentinbox-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server