MCP Server
Connect AI clients like Claude Desktop, Claude Code, or any MCP-compatible client to your agent's email via the Model Context Protocol.
Connection Details
URL:
https://api.xobni.ai/mcp/Transport:Streamable HTTPAuth:Authorization: Bearer xobni_<your-key>Important
Create an API key scoped to a specific agent for the best MCP experience. The MCP tools will automatically operate in the context of that agent's inbox — no need to pass account IDs.
Claude Desktop Configuration
Add this to your
claude_desktop_config.json file.claude_desktop_config.json
{
"mcpServers": {
"xobni-email": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://api.xobni.ai/mcp/",
"--header",
"Authorization: Bearer YOUR_API_KEY"
]
}
}
}Claude Code Configuration
Add as an MCP server in Claude Code settings or
.mcp.json..mcp.json
{
"mcpServers": {
"xobni-email": {
"type": "url",
"url": "https://api.xobni.ai/mcp/",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}