yahoo-mail-mcp-server MCP Server
Provides full email management for Yahoo Mail via IMAP, including listing, reading, searching, deleting, archiving, and flagging emails
Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.
Install and connect
Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.
No verified installation or connection method is available in the retained evidence yet.
Identity
| Canonical slug | yahoo-mail-mcp-server-1fa9bb85 | Deployment | Hybrid |
|---|---|---|---|
| Canonical package | — | Repository | jtokib/yahoo-mail-mcp-server |
| First published | — | Latest release | — |
| Last security verification | — | Classification confidence | 35% |
| Publication | Draft | Official distribution | Not verified |
Distributions
| Channel | Identifier | Current version | Versions | Source |
|---|---|---|---|---|
| source_git | jtokib/yahoo-mail-mcp-server | c1ced5a4dfd3cdbf1130225a2c8799323adbff52 | 1 | Repository |
Current release
| Package | Version | Published / observed | Inventory | Security scan |
|---|---|---|---|---|
| source_gitjtokib/yahoo-mail-mcp-server | c1ced5a4dfd3cdbf1130225a2c8799323adbff52Current | Aug 25, 2026 | 11 toolsSucceeded · 0 resources · 0 prompts | Evidence restricted |
Continuously monitor this MCP for security risk
Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.
- Independent exact-version security scans
- Continuous release and vulnerability monitoring
- Risk-change alerts with capability context
- Historical evidence and API exports
Current version evidence
No public current-version evidence is available yet.
Current protocol inventory
Tools 11
| Tool | Category | Annotations | Risk |
|---|---|---|---|
archive_emailsMove emails to Archive folder using UIDs for long-term storage. UIDs are permanent identifiers.Input schema{
"type": "object",
"properties": {
"uids": {
"type": "array",
"items": {
"type": "number"
},
"description": "Array of UIDs to archive",
"minItems": 1
},
"folder": {
"type": "string",
"description": "Source folder (default: INBOX)",
"default": "INBOX"
}
},
"required": [
"uids"
]
} | — | — | |
delete_emailsMove emails to Trash folder using UIDs (soft delete, recoverable). UIDs are permanent identifiers.Input schema{
"type": "object",
"properties": {
"uids": {
"type": "array",
"items": {
"type": "number"
},
"description": "Array of UIDs to delete",
"minItems": 1
},
"folder": {
"type": "string",
"description": "Source folder (default: INBOX)",
"default": "INBOX"
}
},
"required": [
"uids"
]
} | — | — | |
flag_emailsFlag emails as important/starred using UIDs. UIDs are permanent identifiers.Input schema{
"type": "object",
"properties": {
"uids": {
"type": "array",
"items": {
"type": "number"
},
"description": "Array of UIDs to flag",
"minItems": 1
},
"folder": {
"type": "string",
"description": "Folder containing emails (default: INBOX)",
"default": "INBOX"
}
},
"required": [
"uids"
]
} | — | — | |
list_emailsList recent emails from a Yahoo Mail folder. Returns UIDs (permanent identifiers) and enriched metadata including size, flags, and attachment status.Input schema{
"type": "object",
"properties": {
"count": {
"type": "number",
"description": "Number of emails to retrieve (default: 10, max: 50)",
"default": 10
},
"folder": {
"type": "string",
"description": "Folder to list emails from (default: INBOX). Use list_folders to see available folders.",
"default": "INBOX"
},
"offset": {
"type": "number",
"description": "Number of emails to skip (for pagination, default: 0)",
"default": 0
}
}
} | — | — | |
list_foldersList all available IMAP folders/mailboxes in your Yahoo Mail accountInput schema{
"type": "object",
"properties": {}
} | — | — | |
mark_as_readMark emails as read using UIDs. UIDs are permanent identifiers.Input schema{
"type": "object",
"properties": {
"uids": {
"type": "array",
"items": {
"type": "number"
},
"description": "Array of UIDs to mark as read",
"minItems": 1
},
"folder": {
"type": "string",
"description": "Folder containing emails (default: INBOX)",
"default": "INBOX"
}
},
"required": [
"uids"
]
} | — | — | |
mark_as_unreadMark emails as unread using UIDs. UIDs are permanent identifiers.Input schema{
"type": "object",
"properties": {
"uids": {
"type": "array",
"items": {
"type": "number"
},
"description": "Array of UIDs to mark as unread",
"minItems": 1
},
"folder": {
"type": "string",
"description": "Folder containing emails (default: INBOX)",
"default": "INBOX"
}
},
"required": [
"uids"
]
} | — | — | |
move_emailsMove emails to a specified folder using UIDs. UIDs are permanent identifiers. Use list_folders to see available folders.Input schema{
"type": "object",
"properties": {
"uids": {
"type": "array",
"items": {
"type": "number"
},
"description": "Array of UIDs to move",
"minItems": 1
},
"folderName": {
"type": "string",
"description": "Name of the destination folder (e.g., \"Work\", \"Personal\"). Use list_folders to see available folders."
},
"sourceFolder": {
"type": "string",
"description": "Source folder containing the emails (default: INBOX)",
"default": "INBOX"
}
},
"required": [
"uids",
"folderName"
]
} | — | — | |
read_emailRead email content using UIDs (permanent identifiers). UIDs don't change when emails are deleted. Get UIDs from list_emails or search_emails.Input schema{
"type": "object",
"properties": {
"uids": {
"type": "array",
"items": {
"type": "number"
},
"description": "Array of UIDs to read. UIDs are permanent identifiers from list_emails.",
"minItems": 1
},
"folder": {
"type": "string",
"description": "Folder containing the emails (default: INBOX)",
"default": "INBOX"
}
},
"required": [
"uids"
]
} | — | — | |
search_emailsSearch emails using UIDs with advanced filters. Returns UIDs which are permanent identifiers that don't change when emails are deleted. Get UIDs from results for subsequent operations.Input schema{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search term for subject or sender (can be empty for date-only searches)",
"default": ""
},
"count": {
"type": "number",
"description": "Number of results to return (default: 10, max: 50)",
"default": 10
},
"dateFrom": {
"type": "string",
"description": "Filter emails from this date onwards (ISO 8601 or RFC 2822 format)",
"default": null
},
"dateTo": {
"type": "string",
"description": "Filter emails up to this date (ISO 8601 or RFC 2822 format)",
"default": null
},
"sender": {
"type": "string",
"description": "Filter by specific sender email address or name",
"default": null
},
"unreadOnly": {
"type": "boolean",
"description": "Only return unread emails (default: false)",
"default": false
},
"folder": {
"type": "string",
"description": "Folder to search in (default: INBOX). Use list_folders to see available folders.",
"default": "INBOX"
}
},
"required": []
} | — | — | |
unflag_emailsRemove flag/star from emails using UIDs. UIDs are permanent identifiers.Input schema{
"type": "object",
"properties": {
"uids": {
"type": "array",
"items": {
"type": "number"
},
"description": "Array of UIDs to unflag",
"minItems": 1
},
"folder": {
"type": "string",
"description": "Folder containing emails (default: INBOX)",
"default": "INBOX"
}
},
"required": [
"uids"
]
} | — | — |
Resources 0
- None observed.
Resource templates 0
- None observed.
Prompts 0
- None observed.
Remote endpoints
| Endpoint | Transport | Authentication | Health | Observed |
|---|---|---|---|---|
| No verified remote endpoint is linked. | ||||
yahoo-mail-mcp-server MCP Server questions
How do I install yahoo-mail-mcp-server MCP Server?
No verified package installation command is available in the retained catalog evidence.
What tools does yahoo-mail-mcp-server MCP Server provide?
yahoo-mail-mcp-server MCP Server exposed 11 tools during independent protocol observation, including archive_emails, delete_emails, flag_emails, list_emails, list_folders, mark_as_read, mark_as_unread, move_emails, and others.
Is yahoo-mail-mcp-server MCP Server secure?
The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.
Explore related MCP server guides
Curated product and capability guides containing this catalog record.