Email-Use enables AI agents to interact with external mail servers utilizing secure OAuth tokens.

Key Capabilities

Read Gmail

Access and read emails from connected Gmail accounts

Send Gmail

Compose and send emails through connected Gmail accounts

OAuth Security

Secure authentication without exposing credentials to the agent

Transparent Logging

Track all API operations for accountability and review

Requirements

1

OAuth Authentication

Connect the required account through the Developer Dashboard

2

API Key

Generate and use an MCP API key with appropriate permissions

3

Permission Scopes

Configure the specific permissions your AI agent needs

Endpoint

https://api-gateway.cobrowser.xyz/mcp/api/sse?api_key=YOUR_API_KEY

Implementation with Python SDK

import asyncio
import logging

from mcp import ClientSession
from mcp.client.sse import sse_client

logging.basicConfig(
    level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s"
)

async def main():
    async with sse_client(
        url="https://api-gateway.cobrowser.xyz/mcp/api/sse?api_key=YOUR_API_KEY",
    ) as streams:
        async with ClientSession(*streams) as session:
            await session.initialize()

            # List available tools
            tools = await session.list_tools()
            print(tools)

            # Example: Read emails with a specific subject
            result = await session.call_tool(
                "gmail_read",
                {
                    "subject": "Important Update",
                    "maxResults": 5
                }
            )
            print(result)

asyncio.run(main())

Implementation in Cursor

To use Email-Use in Cursor, create an mcp.json file with the following configuration:

{
  "mcpServers": {
    "api-use-mcp-server": {
      "url": "https://api-gateway.cobrowser.xyz/mcp/api/sse?api_key=YOUR_API_KEY"
    }
  }
}

Place this file in the .cursor folder in your project directory to enable API capabilities for your AI agents within Cursor.

Use Cases for AI Agents

  • Let your LLM answer emails automatically with contextual understanding
  • Intelligently categorize and prioritize incoming messages
  • Extract and summarize key information from email threads
  • Create AI-powered email workflows with conditional logic