yandex-mail-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., "@yandex-mail-mcpshow me my unread emails from today"
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.
Yandex Mail MCP Server
MCP (Model Context Protocol) server for Yandex Mail. Enables Claude Desktop and other MCP clients to read, search, and manage emails via Yandex Mail — 28 tools covering every common mail workflow.
Features
Folders — list, create, rename, delete (with Cyrillic names via IMAP UTF-7)
Search — full IMAP syntax:
FROM/TO/SUBJECT/BODY,LARGER/SMALLER,SENTSINCE/SENTBEFORE,HEADER <field> <value>,KEYWORD/UNKEYWORD,OR/NOT. Cyrillic queries supported.Read — full content, text + HTML body, attachment list
Inspect — fetch MIME structure + size WITHOUT downloading bodies (
inspect_email/fetch_part) — critical for large messagesFlags —
mark_read/mark_unread/mark_flagged/mark_answered+ genericset_flagsSend — plain/HTML, attachments (RFC 2231 for non-ASCII names), save-to-Sent
Reply — proper
In-Reply-To/Referencesthreading, dedupedRe:prefix,reply_allwith RFC 5322 address parsingForward — as
message/rfc822attachment or inline quoted bodyMove/Delete — atomic
UID MOVE(RFC 6851) when supported, smart Trash discovery via\TrashSPECIAL-USEBulk —
bulk_move/bulk_delete/bulk_set_flagsetc. — chunked UID operations for batch workflowsConvenience —
empty_trash,get_unread_summary(counts across all folders in one session)
All operations use stable IMAP UIDs (not sequence numbers), and connection helpers retry transiently on DNS/network flakes.
Quick Start with uvx (recommended)
No install, no venv — uvx fetches the package and runs it sandboxed. Add this to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%/Claude/claude_desktop_config.json (Windows):
Option 1: From PyPI
{
"mcpServers": {
"yandex-mail": {
"command": "uvx",
"args": ["yandex-mail-mcp"],
"env": {
"YANDEX_EMAIL": "your-address@yandex.ru",
"YANDEX_APP_PASSWORD": "your-app-password-here"
}
}
}
}Option 2: From GitHub (latest development build)
{
"mcpServers": {
"yandex-mail": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/imdeniil/yandex-mail-mcp",
"yandex-mail-mcp"
],
"env": {
"YANDEX_EMAIL": "your-address@yandex.ru",
"YANDEX_APP_PASSWORD": "your-app-password-here"
}
}
}
}Restart Claude Desktop. The server will appear as yandex-mail with 28 tools available.
To pin to a specific release:
"--from", "git+https://github.com/imdeniil/yandex-mail-mcp@v0.1.1"Getting a Yandex app password
Go to Yandex ID
Enable Two-Factor Authentication (required for app passwords)
Go to Security → App Passwords
Create new app password for "Mail"
Paste the generated password into
YANDEX_APP_PASSWORDabove
Alternative: Install from source
If you want to hack on the code or don't want uvx:
git clone https://github.com/imdeniil/yandex-mail-mcp.git
cd yandex-mail-mcp
python3 -m venv .venv
source .venv/bin/activate
pip install -e . # installs as editable package with deps
# or for dev tools too:
pip install -e ".[dev]"
cp .env.example .env
# Edit .env with your Yandex email and app passwordThen point Claude Desktop at the venv's Python:
{
"mcpServers": {
"yandex-mail": {
"command": "/absolute/path/to/yandex-mail-mcp/.venv/bin/yandex-mail-mcp"
}
}
}Configuration
Credentials
The server looks for credentials in this order (first wins):
Environment variables
YANDEX_EMAIL/YANDEX_APP_PASSWORD(best for uvx + Claude Desktop)$YANDEX_MAIL_MCP_ENVoverride path to a.envfile$PWD/.env(project-local, for direct invocation)$XDG_CONFIG_HOME/yandex-mail-mcp/.env(typically~/.config/yandex-mail-mcp/.env).envnext toyandex_mail_mcp.py(source checkout)
For Claude Desktop + uvx, just put them in the env block of the config as shown above.
Log file location
The server writes to a log file (stdout is reserved for MCP protocol). Resolution order:
$YANDEX_MAIL_MCP_LOG_FILEoverride$XDG_STATE_HOME/yandex-mail-mcp/yandex_mail_mcp.log(typically~/.local/state/yandex-mail-mcp/yandex_mail_mcp.log)Next to
yandex_mail_mcp.pyin source checkouts$TMPDIR/yandex_mail_mcp.loglast-resort fallback
Available Tools
28 tools across 6 categories. See CHANGELOG.md for the full list. Key ones:
Tool | Purpose |
| Enumerate mailbox folders with attrs |
| Unread counts across all folders |
| IMAP query with pagination |
| Headers + MIME structure, no body download |
| Download a specific MIME part |
| Full text + HTML + attachments |
| Send |
| Reply with threading |
| Forward |
| Atomic where possible |
| Flag shortcuts |
| Batch operations |
| Mailbox management |
| One-call trash cleanup |
Search Query Examples
ALL # All emails
UNSEEN # Unread
FROM sender@example.com # From specific sender
SUBJECT hello # Subject contains "hello"
SINCE 01-Dec-2024 # Received since date
SENTSINCE 01-Jan-2024 # Sent since date
LARGER 1048576 # Larger than 1 MB
HEADER List-Id announce # Custom header search
HEADER X-Custom "multi word value" # Multi-word via shlex
KEYWORD Important # User keyword flag
UNSEEN FROM boss@company.com # Combined (implicit AND)
OR FROM alice@x.com FROM bob@x.com # Logical OR
NOT DELETED # Negation
UNSEEN LARGER 500000 SINCE 01-Jan-2024 # Multi-criteriaRunning Tests
# Install dev deps
pip install -e ".[dev]"
# Safe tests (always run — unit + read-only integration)
pytest
# Full suite including destructive + send (modifies mailbox, sends mail)
pytest --run-destructive
# Specific category
pytest -m destructive --run-destructive
pytest -m send --run-destructiveIntegration tests require .env with valid credentials. Destructive and send tests are gated behind --run-destructive for safety.
Security Notes
send_emailattachments can read any file accessible to the server process. Theattachmentsparameter accepts absolute file paths, so in principle an LLM could be prompt-injected (e.g. via the body of an incoming email read throughread_email) into attaching sensitive files such as~/.ssh/id_rsato an outgoing message. This is inherent to exposing a filesystem-reading primitive over MCP.Mitigations:
Every
send_emailcall must be approved by you in the MCP client (Claude Desktop shows tool calls before executing them — always read which files are being attached before approving).Every attachment path is written to the log file for audit.
Run the server as a user that only has access to files you are willing to send by email.
download_attachmentsanitises filenames from received email (strips path components, asserts the resolved path stays withinsave_dir) so a malicious sender cannot write outside the target directory.delete_folderis destructive. Behavior on non-empty folders is server-dependent per RFC 3501 §6.3.4. Approve carefully.Credentials come from environment variables (MCP client config) or a
.envfile. Keep.envout of version control.
Not supported (intentionally)
Verified empirically against imap.yandex.com:
ManageSieve / server-side filters — Yandex does not expose the ManageSieve protocol (port 4190 closed, no
SIEVEcapability). User filter rules ("Правила обработки писем") can only be managed through the Yandex web UI. This MCP server provides client-side equivalents viabulk_*+ conditional logic.SORT / THREAD extensions (RFC 5256) — Yandex returns
BAD Command syntax error. Sort client-side if needed.IDLE push notifications — supported by Yandex but not exposed as an MCP tool because long-polling doesn't fit the stateless request/response model. Use
get_folder_statusorget_unread_summaryfor polling instead.
License
MIT
This server cannot be installed
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/imdeniil/yandex-mail-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server