XTND | MCP | ONE
OfficialClick 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., "@XTND | MCP | ONESearch my inbox for unread emails from John about the project"
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.
π¬ XTND | MCP | ONE
The Premier Model Context Protocol (MCP) Server for one.com Mail Infrastructure
Empower Claude, Cursor, ChatGPT, Zed, and autonomous AI agents with full mailbox intelligence (IMAP/SMTP) over one.com.
Features β’ Client Setup Guides β’ Tool Catalog β’ Workflow Prompts β’ Dynamic Resources β’ Architecture β’ Security
π Key Features
π Complete Mailbox Hierarchy: Manage all standard and custom folders (
INBOX,Drafts,Sent,Archive,Trash) with real-time total and unread message counters.π Server-Side Search Engine: Search by full-text keyword, sender, recipient, subject, date ranges, and flags (
unread,flagged) without downloading gigabytes of data.π AI Context Protection: Automatically converts HTML emails into clean, token-efficient Markdown, stripping tracking pixels, inline CSS blobs, and scripts.
π·οΈ Triage & Flagging: Mark emails as read/unread/flagged, batch move between folders, and perform safe trash or permanent expunge.
βοΈ Outbound SMTP Delivery: Send new messages via
send.one.com:465(implicit TLS), draft intelligent replies with automatedIn-Reply-To/References, forward threads, and manage drafts.β‘ Triple-Transport Architecture:
NPX Stdio for local desktop clients (
npx @xtnd-dynamics/mcp-one).Streamable HTTP (
/mcp) for Smithery, Cursor, and web AI agents.Server-Sent Events (
/sse) for legacy streaming clients.
Related MCP server: Mailbridge MCP
π¦ Client Setup Guides
1. Claude Desktop (Local NPX)
Add the following to your claude_desktop_config.json:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"XTND | MCP | ONE": {
"command": "npx",
"args": ["-y", "@xtnd-dynamics/mcp-one"],
"env": {
"ONECOM_EMAIL": "user@yourdomain.com",
"ONECOM_PASSWORD": "your_mailbox_password"
}
}
}
}2. 1-Click Install via Smithery CLI
npx -y @smithery/cli install @xtnd-dynamics/mcp-one --client claude3. Cursor IDE (.cursor/mcp.json)
{
"mcpServers": {
"one-mail": {
"command": "npx",
"args": ["-y", "@xtnd-dynamics/mcp-one"],
"env": {
"ONECOM_EMAIL": "user@yourdomain.com",
"ONECOM_PASSWORD": "your_mailbox_password"
}
}
}
}4. Zed Editor (settings.json)
{
"context_servers": {
"one-mail": {
"command": {
"path": "npx",
"args": ["-y", "@xtnd-dynamics/mcp-one"],
"env": {
"ONECOM_EMAIL": "user@yourdomain.com",
"ONECOM_PASSWORD": "your_mailbox_password"
}
}
}
}
}5. Remote Hosted Edge Gateway (Streamable HTTP / SSE)
For web-based AI clients or SaaS deployments:
Streamable HTTP Endpoint:
https://one.mcp.xgi.io/mcpSSE Endpoint:
https://one.mcp.xgi.io/sse
{
"mcpServers": {
"XTND | MCP | ONE": {
"url": "https://one.mcp.xgi.io/mcp",
"headers": {
"X-OneCom-Email": "user@yourdomain.com",
"X-OneCom-Password": "your_mailbox_password"
}
}
}
}π οΈ Tool Catalog (15 Tools)
Tool Name | Description | Key Arguments |
| List all mailboxes/folders with message and unread counts | (none) |
| Create a new mailbox folder |
|
| Rename an existing mailbox folder |
|
| Delete a mailbox folder |
|
| Server-side filtered email search |
|
| Retrieve recent email headers and envelope metadata |
|
| Fetch full message body converted to Markdown |
|
| Retrieve full conversation thread history |
|
| Update flags (read, unread, flag, unflag) |
|
| Move emails between folders (e.g. to Archive) |
|
| Soft delete to Trash or permanent expunge |
|
| Send outbound email via |
|
| Reply with automated headers and quotation |
|
| Forward email with original header context |
|
| Save message draft directly to one.com Drafts |
|
π§ Workflow Prompts (4 Assistants)
Prompt Name | Purpose | Parameters |
| Scans unread emails, categorizes into priority buckets, and drafts action plans |
|
| Inspects thread context and drafts contextual replies |
|
| Identifies marketing newsletters, promotional blasts, and automated alerts |
|
| Generates a high-density daily digest with blocker checklist | (none) |
π MCP Resources (4 Endpoints)
Resource URI | MIME Type | Description |
|
| Real-time catalog of all mailboxes and unread counters |
|
| Gateway connection health and protocol capabilities |
|
| Standardized executive meeting summary template |
|
| Standardized out-of-office auto-reply template |
ποΈ Architecture
flowchart TD
subgraph Clients ["AI Clients & Platforms"]
CD["Claude Desktop"]
CR["Cursor / Zed / Windsurf"]
CG["ChatGPT Custom GPTs"]
SM["Smithery Marketplace"]
end
subgraph LocalTransport ["Local Execution"]
NPX["npx @xtnd-dynamics/mcp-one\n(Stdio Protocol)"]
end
subgraph EdgeTransport ["Cloudflare Edge (one.mcp.xgi.io)"]
HTTP["Streamable HTTP (/mcp)"]
SSE["Server-Sent Events (/sse)"]
CARD["Static Server Card (/.well-known/mcp/server-card.json)"]
end
subgraph CoreEngine ["XTND Core Engine"]
MIME["MIME & Markdown Token Optimizer"]
IMAP["IMAP Client (imap.one.com:993 TLS)"]
SMTP["SMTP Client (send.one.com:465 TLS)"]
end
subgraph OneCom ["One.com Mail Infrastructure"]
MBOX["User Mailboxes & Folders"]
MX["Mail Submission Relays"]
end
CD --> NPX
CR --> NPX
CR --> HTTP
SM --> HTTP
CG --> HTTP
CD --> SSE
NPX --> MIME
HTTP --> MIME
SSE --> MIME
MIME --> IMAP
MIME --> SMTP
IMAP <--> MBOX
SMTP --> MXπ Security & AI Token Budgeting
Zero-Credential Storage: Credentials are never persisted on edge servers. Stdio uses local process environment; hosted gateway uses ephemeral request headers.
Implicit TLS Only: Inbound connections use port 993 (IMAPS) and outbound uses port 465 (SMTPS) over strict TLS sockets, avoiding STARTTLS vulnerabilities.
Token Budget Guard: Incoming HTML is sanitized and converted to semantic Markdown, discarding CSS boilerplate, tracking pixels, and binary attachments to prevent context window exhaustion.
π License
MIT License Β© 2026 XTND Dynamics. Developed for the global AI developer ecosystem.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityFmaintenanceEnables AI assistants to read, search, compose, and send emails by connecting to any IMAP/SMTP provider. It supports comprehensive mailbox management, including draft handling and message deletion, directly through natural language.1040710MIT
- AlicenseNot gradedqualityCmaintenanceConnects AI assistants to email accounts via IMAP/SMTP, enabling reading, searching, sending, and organizing emails with features like smart drafts, scheduling, and attachment handling.2712MIT
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage Gmail and Outlook inboxes through natural language, supporting email search, reading, and reply operations.
- AlicenseBqualityDmaintenanceEnables AI assistants to send, read, and manage emails via SMTP and IMAP, with support for attachments, threads, and mailbox organization.16421MIT
Related MCP Connectors
AI email inbox and sending tools with attachments, search, live events, and webhooks.
Email for AI agents β send, receive as a webhook, manage domains, templates, routing.
Manage Gmail end-to-end: search, read, send, draft, label, and organize threads. Automate workflowβ¦
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/XTND-DYNAMICS/xtnd-mcp-one'
If you have feedback or need assistance with the MCP directory API, please join our Discord server