MCP server for AOL Mail via IMAP and SMTP
Project description
AOL Mail MCP Server
A production-ready Model Context Protocol server for AOL Mail.
Works as a local stdio MCP server compatible with VS Code GitHub Copilot Agent Mode and Claude Desktop.
Uses uv for dependency and environment management.
Prerequisites
- uv package manager (Python 3.11+ included automatically)
- An AOL Mail account with IMAP access enabled
- An AOL app password (not your main AOL password)
Install uv
# macOS / Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows (PowerShell)
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
Verify: uv --version
Generate an AOL App Password
- Sign in at myaccount.aol.com.
- Go to Security → Manage app passwords.
- Enter a label (e.g.
MCP Server) and click Generate password. - Copy the generated password — this is your
AOL_APP_PASSWORD.
AOL requires an app password for all third-party IMAP/SMTP clients.
Standard account passwords will not work.
Usage
There are three ways to run the server depending on your situation.
Option A — uvx (recommended, no install required)
Runs directly from PyPI without cloning or installing anything permanently.
uvx aol-mcp
Pass credentials via environment variables (see VS Code / Claude Desktop config below).
Option B — Install as a persistent tool
Install once, run anywhere by name.
# From PyPI
uv tool install aol-mcp
# From GitHub (before PyPI publish)
uv tool install git+https://github.com/kubegrind/aol-mcp-server
# From a local clone
uv tool install .
Then run:
AOL_EMAIL=you@aol.com AOL_APP_PASSWORD=yourpassword aol-mcp
Option C — Local clone (for development / contributors)
git clone https://github.com/kubegrind/aol-mcp-server
cd aol-mcp-server
uv sync
cp .env.example .env
# Edit .env with your credentials
uv run server.py
VS Code (GitHub Copilot Agent Mode) Setup
Create or edit .vscode/mcp.json in your workspace:
Recommended — uvx (no install needed):
{
"servers": {
"aol-mail": {
"type": "stdio",
"command": "uvx",
"args": ["aol-mcp"],
"env": {
"AOL_EMAIL": "your_email@aol.com",
"AOL_APP_PASSWORD": "your_app_password"
}
}
}
}
Alternative — local clone:
{
"servers": {
"aol-mail": {
"type": "stdio",
"command": "uv",
"args": ["run", "--directory", "/path/to/aol-mcp-server", "server.py"],
"env": {
"AOL_EMAIL": "your_email@aol.com",
"AOL_APP_PASSWORD": "your_app_password"
}
}
}
}
Open Copilot Chat, switch to Agent Mode — AOL Mail tools appear automatically.
Claude Desktop Setup
Edit your Claude Desktop config:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Recommended — uvx:
{
"mcpServers": {
"aol-mail": {
"command": "uvx",
"args": ["aol-mcp"],
"env": {
"AOL_EMAIL": "your_email@aol.com",
"AOL_APP_PASSWORD": "your_app_password"
}
}
}
}
Alternative — local clone:
{
"mcpServers": {
"aol-mail": {
"command": "uv",
"args": ["run", "--directory", "/full/path/to/aol-mcp-server", "server.py"],
"env": {
"AOL_EMAIL": "your_email@aol.com",
"AOL_APP_PASSWORD": "your_app_password"
}
}
}
}
Restart Claude Desktop after saving — AOL Mail tools appear in the tools panel.
Available Tools
| Tool | Description |
|---|---|
read_inbox |
List recent emails from any folder (default: INBOX) |
read_folder |
List recent emails from a named folder (e.g. LinkedIn, GitHub) |
read_email |
Fetch full body and headers by IMAP message ID, with optional folder |
search_emails |
Search by keyword in any folder across FROM, SUBJECT, BODY, or ALL |
send_email |
Compose and send a new email |
reply_email |
Reply to an existing email by message ID, with optional folder |
delete_email |
Move an email to Trash by message ID, with optional folder |
delete_all_in_folder |
Bulk delete — move every email in a folder to Trash |
move_email |
Move an email to any named folder, with optional source folder |
move_all_emails |
Bulk move — move all emails from one folder to another |
list_folders |
List all IMAP folders in the mailbox |
mark_read |
Mark one or multiple emails as read, with optional folder |
get_attachments |
List all attachments (name, MIME type, size) in an email |
Example Prompts
Show me the last 5 emails in my inbox.
Show me the last 10 emails in my LinkedIn folder.
Read email ID 42 from my GitHub folder.
Search for emails from boss@example.com in my Sent folder.
Send an email to alice@example.com with subject "Hello" and body "Hi Alice!".
Reply to email 17 with "Thanks, got it!".
Delete email 99 from my LinkedIn folder.
Delete all emails in my Spam folder.
Move email 55 to folder Work.
Move all emails from LinkedIn to Archive.
List all my mail folders.
Mark emails 10, 11, 12 as read in my GitHub folder.
List attachments in email 33.
Connection Details
| Protocol | Host | Port | Security |
|---|---|---|---|
| IMAP | imap.aol.com | 993 | SSL/TLS |
| SMTP | smtp.aol.com | 465 | SSL/TLS |
Troubleshooting
"AUTHENTICATE failed" / login rejected
- Make sure
AOL_APP_PASSWORDis the app password from myaccount.aol.com, not your AOL login password. - Re-generate the app password and update your config.
- Confirm IMAP is enabled in your AOL account security settings.
"Connection refused" / timeout on ports 993 or 465
- Your firewall or network may be blocking outbound SSL ports.
- Test connectivity:
telnet imap.aol.com 993
Emails not found by ID
- IMAP message IDs are session-scoped integers. Run
read_inboxfirst to retrieve current IDs.
uvx / uv not found in VS Code or Claude Desktop
- Ensure
uvis on your systemPATH(the installer normally handles this). - Find the full path with
which uv(macOS/Linux) orwhere uv(Windows) and use it ascommand. - macOS example:
"command": "/Users/you/.local/bin/uvx"
uv tool install fails
- Ensure Python 3.11+ is available:
uv python install 3.11 - Try
uv tool install --reinstall aol-mcp-serverto force a clean install.
SSL certificate errors
- Upgrade your CA bundle:
uv run --with certifi python -m certifi - On macOS, run the Install Certificates script in your Python.app folder.
Security Notes
- Credentials are passed via environment variables — never stored in the package.
.envis in.gitignoreand must never be committed.- Passwords are never logged or included in error messages.
- All IMAP and SMTP connections are closed in
finallyblocks — no connection leaks.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aol_mcp-0.2.0.tar.gz.
File metadata
- Download URL: aol_mcp-0.2.0.tar.gz
- Upload date:
- Size: 109.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92270a715c984ea1c3a098d408bc3c7d3c173e5fff21fd4f2f59e05c8450fa7a
|
|
| MD5 |
00094a59a68e5cce6c4c1ee417b25c8f
|
|
| BLAKE2b-256 |
4a52bd73d23007247213c6c8c61e593ae4d47809791f55dd37f6c860a8c9ce98
|
Provenance
The following attestation bundles were made for aol_mcp-0.2.0.tar.gz:
Publisher:
release.yml on kubegrind/aol-mcp-server
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aol_mcp-0.2.0.tar.gz -
Subject digest:
92270a715c984ea1c3a098d408bc3c7d3c173e5fff21fd4f2f59e05c8450fa7a - Sigstore transparency entry: 1429393285
- Sigstore integration time:
-
Permalink:
kubegrind/aol-mcp-server@d3f6e7b01cf53c5574f5b55fcde2a844cd12884b -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/kubegrind
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d3f6e7b01cf53c5574f5b55fcde2a844cd12884b -
Trigger Event:
push
-
Statement type:
File details
Details for the file aol_mcp-0.2.0-py3-none-any.whl.
File metadata
- Download URL: aol_mcp-0.2.0-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aaa4f642c7d8da6cd578cf45c82856d4926ab60dbe1e1555c9988bbdd8e2c10d
|
|
| MD5 |
c298a5194ed631f5c46f02d04345d672
|
|
| BLAKE2b-256 |
5a585f97e990ccaa0b22f75686c847bea90427b9bb9729e21d502aaad19c0759
|
Provenance
The following attestation bundles were made for aol_mcp-0.2.0-py3-none-any.whl:
Publisher:
release.yml on kubegrind/aol-mcp-server
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aol_mcp-0.2.0-py3-none-any.whl -
Subject digest:
aaa4f642c7d8da6cd578cf45c82856d4926ab60dbe1e1555c9988bbdd8e2c10d - Sigstore transparency entry: 1429393298
- Sigstore integration time:
-
Permalink:
kubegrind/aol-mcp-server@d3f6e7b01cf53c5574f5b55fcde2a844cd12884b -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/kubegrind
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d3f6e7b01cf53c5574f5b55fcde2a844cd12884b -
Trigger Event:
push
-
Statement type: