Skip to main content
Glama
Quolle-main

Quolle MCP

by Quolle-main

Quolle MCP Server

Let AI agents — Claude Desktop, Cursor, and any Model Context Protocol client — send transactional email through Quolle.

The agent gets tools to send email, send batches, check delivery status, cancel scheduled sends, and list your verified domains — so it can do things like "email the new signup their verification code" or "send everyone on this list their receipt" using your Quolle account.

Tools

Tool

What it does

send_email

Send one email (OTP, receipt, notification). Supports HTML or templates, scheduling, and idempotency.

send_batch

Send up to 100 emails in one all-or-nothing request.

get_email

Check an email's delivery status and open/click counts by ID.

cancel_email

Cancel a scheduled email before it sends.

list_domains

List your sending domains + verification status (to find a valid from).

Related MCP server: AgentMail MCP Server

Install & build

npm install
npm run build

Configure your MCP client

You need a Quolle API key (starts with qle_) from your dashboard → API Keys.

Claude Desktop

Add to claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "quolle": {
      "command": "node",
      "args": ["/absolute/path/to/quolle-mcp/dist/index.js"],
      "env": {
        "QUOLLE_API_KEY": "qle_your_api_key"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project (or global settings):

{
  "mcpServers": {
    "quolle": {
      "command": "node",
      "args": ["/absolute/path/to/quolle-mcp/dist/index.js"],
      "env": { "QUOLLE_API_KEY": "qle_your_api_key" }
    }
  }
}

Once published to npm, you can skip the local build and use npx:

{
  "mcpServers": {
    "quolle": {
      "command": "npx",
      "args": ["-y", "@quolle/mcp"],
      "env": { "QUOLLE_API_KEY": "qle_your_api_key" }
    }
  }
}

Try it

After restarting your MCP client, ask the agent:

"Using Quolle, send a test email from hello@mail.mydomain.com to me@example.com with the subject 'Hello from my agent' and a short HTML body."

The agent will call list_domains to confirm a valid sender, then send_email.

Environment

  • QUOLLE_API_KEYrequired. Your Quolle API key.

  • QUOLLE_BASE_URL — optional, defaults to https://api.quolle.com.

Safety

Sends go through your real Quolle account and count against your quota. To test agent flows without touching your reputation, point the agent at Quolle's reserved test addresses: delivered@test.quolle.com, bounced@test.quolle.com, complained@test.quolle.com.

License

MIT

Install Server
F
license - not found
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

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/Quolle-main/quolle-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server