Quolle MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Quolle MCPSend a test email to me@example.com from hello@myverifieddomain.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 one email (OTP, receipt, notification). Supports HTML or templates, scheduling, and idempotency. |
| Send up to 100 emails in one all-or-nothing request. |
| Check an email's delivery status and open/click counts by ID. |
| Cancel a scheduled email before it sends. |
| List your sending domains + verification status (to find a valid |
Related MCP server: AgentMail MCP Server
Install & build
npm install
npm run buildConfigure 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
Maintenance
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
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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