Quolle MCP
Enables AI agents to send transactional emails through Quolle, including sending, batching, canceling, and checking delivery status of emails.
README
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). |
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_KEY— required. Your Quolle API key.QUOLLE_BASE_URL— optional, defaults tohttps://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
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.