inbox.dog in Amp
Add the inbox.dog MCP server to Amp, Sourcegraph's terminal-based coding agent.
Official docs
Amp — MCP ServersAmp supports MCP servers configured globally in ~/.ampcode/settings.json or per-project in .ampcode/settings.json.
1. Get credentials
Create an API key and connect Gmail at inbox.dog/connect.
2. Add MCP config
Open ~/.ampcode/settings.json (global) or .ampcode/settings.json (per-project) and add the inbox.dog server under mcpServers:
{
"mcpServers": {
"inbox-dog": {
"command": "npx",
"args": ["-y", "inbox.dog", "mcp"],
"env": {
"INBOX_DOG_CLIENT_ID": "your_client_id",
"INBOX_DOG_CLIENT_SECRET": "your_client_secret"
}
}
}
} 3. Restart Amp
Restart Amp or open a new session. The inbox.dog tools will be available automatically.