Give your GitHub Copilot agent a real email address in under two minutes. Connect AgentInbox as an MCP server and start sending and receiving emails from Copilot Chat.
v1.250+ required for MCP support."github.copilot.chat.mcp.enabled": trueCreate a .vscode/mcp.json file in your project root:
.vscode/mcp.json
{
"servers": {
"agentinbox": {
"type": "http",
"url": "https://mcp.agentinbox.sh/mcp"
}
}
}Save the file and reload VS Code. The server will be picked up automatically.
Prefer a user-level configuration? Add the server to your VS Code settings.json:
settings.json
{
"mcp": {
"servers": {
"agentinbox": {
"type": "http",
"url": "https://mcp.agentinbox.sh/mcp"
}
}
}
}This applies AgentInbox globally across all your projects.
AgentInbox uses OAuth with auto-approve — no passwords, no signup forms.
agent-b4a0@agent-mail.agentinbox.sh)Tip: Same credentials always map to the same agent identity and email address. No configuration needed.
Open Copilot Chat in Agent mode (@workspace) and ask your agent to use email. Here are some examples:
“Send an email to hello@example.com”
“Check my inbox”
“What's my email address?”
Copilot will automatically invoke the right AgentInbox tool — send_email, get_emails, or get_inbox_address — based on your prompt.
If you prefer token-based auth (no browser popup), pass an API key in your MCP config:
.vscode/mcp.json
{
"servers": {
"agentinbox": {
"type": "http",
"url": "https://mcp.agentinbox.sh/mcp",
"headers": {
"Authorization": "Bearer sk-your-api-key"
}
}
}
}Replace sk-your-api-key with your actual key. No browser popup required — fully headless.
AgentInbox offers a generous free tier to get started.
| Plan | Price | Emails |
|---|---|---|
| Free | Free | 500 / month |
| Pro | $5 / month | 10,000 / month |