Skip to main content
Glama
huckncatch

mailmate-mcp

by huckncatch

mailmate-mcp

An MCP server that gives Claude (and other MCP clients) direct access to MailMate, the macOS email client. Search, read, move, tag, and link emails without leaving your conversation.

Requirements

  • macOS (MailMate is Mac-only)

  • MailMate installed and configured with at least one IMAP account

  • Python 3.11+

  • uv

Related MCP server: mail-macos-mcp

Installation

git clone https://github.com/huckncatch/mailmate-mcp
cd mailmate-mcp
uv sync

MCP Registration

Claude Code (global, all projects)

claude mcp add --scope user mailmate /path/to/mailmate-mcp/.venv/bin/mailmate-mcp

Or add manually to ~/.claude.json under "mcpServers":

"mailmate": {
  "type": "stdio",
  "command": "/path/to/mailmate-mcp/.venv/bin/mailmate-mcp",
  "args": [],
  "env": {}
}

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "mailmate": {
      "command": "/path/to/mailmate-mcp/.venv/bin/mailmate-mcp"
    }
  }
}

Restart Claude Desktop after any change to server code or config.

Tools

Tool

Description

search_messages

Search by query string, tag, account, or mailbox. Supports body search.

get_message

Fetch full details and body for a message by its message:// URL.

list_mailboxes

List all mailboxes across all configured accounts with message counts.

list_tags

List all tags defined in MailMate Preferences → Tags.

get_message_link

Get the message:// link for a message and open it in MailMate.

open_message_in_mailmate

Navigate MailMate to a specific message.

move_message

Move a message to a different mailbox (syncs via IMAP).

tag_message

Add or remove tags on a message (syncs as IMAP keywords).

Messages are identified by message:// URLs derived from the RFC 2822 Message-ID header, e.g. message://%3Cabc123@example.com%3E. Use search_messages to find them.

How It Works

The server reads MailMate's on-disk message store at:

~/Library/Application Support/MailMate/Messages.noindex/IMAP/
  <account>/
    <mailbox>.mailbox/
      Messages/
        <uid>.eml

mailstore.py — filesystem and parsing layer. Walks the store, parses .eml files, and maintains an in-memory index for fast search. No MCP or AppleScript dependencies.

server.py — MCP boundary. Defines all tools via fastmcp and issues AppleScript calls to MailMate for actions that require IMAP sync (open, tag, activate).

Development

# Run the server directly (stdio transport)
uv run mailmate-mcp

# Or via the module
uv run python -m mailmate_mcp.server

There is no automated test suite. Manual testing is done by registering the server with Claude Desktop or Claude Code and exercising the tools in a conversation.

Available Tools

8 tools
get_messageA

Get full details of a specific email by its message:// URL.

Returns headers, metadata, tags, and optionally the body.

ParametersJSON Schema
NameRequiredDescriptionDefault
message_urlYesThe message:// URL of the message to retrieve
prefer_htmlNoPrefer HTML body over plain text
include_bodyNoInclude the message body text

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description bears the burden of behavioral disclosure. It explains what is returned and that the body is optional, but it does not state side-effect behavior, authentication needs, or error conditions. 'Get' implies read-only, but this is not made explicit.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no filler. It front-loads the core purpose and then gives the return payload categories, making it easy for an agent to scan and understand.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple retrieval tool with an output schema and fully documented parameters, the description is largely complete: it specifies the URL scheme, the resource type, and the returned content. A minor gap is not explicitly stating that this is a non-mutating read operation, especially given the absence of annotations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, and all parameters already have clear descriptions. The tool description adds little beyond saying the body is optional, which mirrors the include_body parameter. The schema carries the parameter semantic load.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: get full details of an email by its message:// URL, and enumerates the returned data (headers, metadata, tags, optionally body). This clearly distinguishes it from siblings like search_messages_tool or open_message_in_mailmate.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly implies when to use the tool: when you have a message:// URL and need full message details. It does not explicitly name alternatives or exclusions, but the resource and purpose make the appropriate context evident.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_mailboxesA

List all mailboxes across all configured MailMate accounts.

Returns account name, mailbox path, and message count for each.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It clearly states the operation is a listing (non-mutating) and specifies the return fields (account name, mailbox path, message count). It does not need to warn about side effects because a list operation has none.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences long, front-hoaded with the action, and contains no fluff. Every sentence contributes: the first defines scope, the second defines the output contract.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a simple zero-parameter listing tool. The description states the full scope and the returned fields, and an output schema exists to define the exact return shape. Nothing relevant is mising.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has zero parameters, so the baseline is 4. The description adds no parameter information because there are no parameters to document; schema coverage is 100% by virue of noparams.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('List') and a clear resource ('all mailboxes across all configured MailMate accounts'). This differentiates it from sibling tools like list_tags or search_messages_tool, which operaze on different entities.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool should be used when a user needs to enumerate mailboxes across accounts, but it does not explicitly mention when to prefer it over alternatives or when not to use it. Since siblings have distinctly different purposes, the implication is sufficient but not stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_tagsA

List all tags defined in MailMate.

Tags correspond to IMAP keywords and are configured in MailMate > Preferences > Tags.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden of behavioral disclosure. It adds useful context about tags being IMAP keywords and where they are configured, but it does not explicitly state that the operation is read-only or describe side effects, caching, or failure modes. 'List' implies a read operation, but additional disclosure would strengthen it.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three short sentences with the purpose front-loaded in the first sentence. The additional sentences about IMAP keywords and configuration location are informative rather than filler, so every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter list operation with an output schema available, the description is complete enough for an agent to select and invoke the tool correctly. No prerequisites or alternate routing are necessary, and the output schema would cover return details.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has zero parameters, and the description correctly adds no parameter-specific details. The zero-parameter baseline of 4 applies here because there is nothing to explain beyond the empty schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'List all tags defined in MailMate' — a specific verb and resource. It further clarifies that tags correspond to IMAP keywords, which distinguishes this tool from siblings like list_mailboxes and tag_message.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no explicit when-to-use guidance or mention of alternatives. An agent can infer from the purpose that it should be used to enumerate available tags, but the description does not state when to prefer it over sibling tools or connect it to tag_message.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

move_messageA

Move a message to a different mailbox.

MailMate performs the actual IMAP MOVE, so the message will be moved on the server as well. Provide the 'path' from list_mailboxes or just a mailbox name — if a name is given, the first matching mailbox across all accounts is used.

ParametersJSON Schema
NameRequiredDescriptionDefault
message_urlYesThe message:// URL of the message to move
target_mailbox_pathYesFilesystem path of the target .mailbox directory (e.g. from list_mailboxes 'path' field), or the mailbox name like 'Archive' or 'INBOX'.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It does well by stating that MailMate performs the actual IMAP MOVE and that the message will also be moved on the server. It also discloses the potentially surprising behavior of matching a supplied name against the first mailbox across all accounts. It does not discuss reversibility or permissions, but the main side-effect is clearly surfaced.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded with the core action. Every sentence contributes: the main operation, the important server-side behavior, and the parameter-resolution nuance. No filler or redundant restatement is present.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a two-parameter mutation tool with an output schema present, this description is complete enough for an agent to select and invoke it correctly. It covers what the tool does, the key server-side effect, and the ambiguous name-matching behavior. The required parameters are clear from the schema, and the description adds the necessary guidance about where to get the target path.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already documents both parameters with 100% coverage, which establishes a baseline of 3. The description adds meaningful value by explaining how to obtain the target path (from list_mailboxes) and what happens when a bare mailbox name is supplied: the first matching mailbox across all accounts is used. This nuance goes beyond the schema's field descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Move a message to a different mailbox.' It clearly distinguishes the tool from siblings like get_message, tag_message, or list_mailboxes by defining its unique action. The server-side IMAP MOVE detail further reinforces what this tool specifically does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear practical context for use, including how to supply the target mailbox: use the 'path' from list_mailboxes or fall back to a mailbox name. It explicitly references a sibling tool as the source for a parameter and warns about first-match ambiguity, but it does not explicitly state when not to use this tool versus alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

open_message_in_mailmateA

Open a specific message in MailMate by its message:// URL.

Activates MailMate and navigates to the message.

ParametersJSON Schema
NameRequiredDescriptionDefault
message_urlYesThe message:// URL to open

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations present, the description carries the full behavioral burden. It usefully discloses that the tool 'Activates MailMate' and navigates to the message, which signals a non-trivial side effect of bringing an external application to the foreground. It also clarifies the input format as a message:// URL, providing meaningful behavioral context beyond the tool name.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded: the first sentence states exactly what the tool does, and the second sentence adds the key activation behavior. Every sentence earns its place, with no filler or redundant elaboration.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter tool with full schema coverage and an output schema, the description is largely complete. It covers the action, the input format, and the side effect of activating MailMate. A small gap is the absence of any guidance about when to prefer this tool over related siblings, but the simplicity of the tool keeps this from being a major omission.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already fully documents the single parameter with 'The message:// URL to open', and the description repeats the same concept without adding format details, validation rules, or edge-case guidance. Since schema description coverage is 100%, the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Open'), a specific resource ('a specific message in MailMate'), and the exact input type ('message:// URL'). It clearly distinguishes from sibling tools like get_message or get_message_link, since the goal is to open and navigate in the MailMate application rather than retrieve or link a message.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives no explicit guidance about when to use this tool versus alternatives such as get_message, get_message_link, or search_messages_tool. It implies usage by describing the action, but it does not state exclusions, prerequisites, or conditions that should route an agent to a sibling tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_messages_toolA

Search MailMate messages by query string and/or tag.

query and tag are both optional — omit query to list all messages with a given tag, or omit tag to search by text only. Use list_tags to see available tags.

Returns a list of matching messages with subject, from, to, date, mailbox, tags, and message_url for each.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagNoFilter to messages with this tag (exact match, case-insensitive)
queryNoSearch query (matched against subject, from, to); leave empty to match all
accountNoOptional account filter (substring match on email address)
mailboxNoOptional mailbox filter (substring match, e.g. 'INBOX', 'Archive')
max_resultsNoMaximum number of results to return
include_bodyNoAlso search inside message body text (slower)

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden of revealing behavior. It discloses that query/tag are optional and that the result is a list with specific fields, but it does not state matching semantics (e.g., query matched against subject/from/to), case-insensitive exact tag matching, or the slower body-search behavior; these are delegated to schema descriptions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, no filler, with the core purpose first, followed by usage modes and a compact return-value list. Every sentence contributes to selection or invocation.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only search tool with an output schema and 100% schema coverage, the description covers the essential search modes and result shape. It does not enumerate account/mailbox/body filters, but those are documented in the input schema, so the agent has what it needs to call the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds real semantic value by defining the relationship between query and tag—both optional, with distinct list-by-tag and text-search modes—and by pointing to list_tags for valid tag values. The other parameters (account, mailbox, max_results, include_body) are already well described in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description names the exact operation ('Search MailMate messages') and its two key criteria (query string and/or tag), which is enough to distinguish it from sibling tools like open_message_in_mailmate or get_message. It also states the output is a list of matching messages, confirming it is a search/list tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly explains how to combine the optional query and tag parameters ('omit query to list all messages with a given tag, or omit tag to search by text only') and points to list_tags as a prerequisite helper. It does not mention exclusions or when to prefer get_message/open_message, but the main invocation pattern is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

tag_messageA

Add or remove tags on a message.

Tags are stored as IMAP Keywords headers and synced to the server. MailMate will pick up the change on next access.

Use list_tags to see what tags are defined in MailMate.

ParametersJSON Schema
NameRequiredDescriptionDefault
add_tagsNoTags to add (MailMate will sync as IMAP keywords)
message_urlYesThe message:// URL of the message to tag
remove_tagsNoTags to remove

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the behavioral burden. It discloses the non-obvious storage mechanism ('stored as IMAP Keywords headers'), synchronization behavior ('synced to the server'), and timing ('MailMate will pick up the change on next access'). It could also mention edge cases like requiring at least one of add_tags or remove_tags, but the key mutation semantics are well covered.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three short, purposeful sentences: the core action, the storage/sync behavior, and a helpful sibling pointer. No redundant filler or restatement of the name, and the most important information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple three-parameter mutation tool with 100% schema coverage and an output schema, this is nearly complete. It covers the tag format, sync implications, and how to discover valid tags. It omits edge cases such as whether both add_tags and remove_tags can be combined or whether at least one is required, so it is not a perfect 5.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all three parameters with clear descriptions. The description adds little beyond the schema's parameter details, but it reinforces that tags are synced as IMAP keywords, which matches the add_tags schema note. This is a baseline 3 situation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Add or remove tags on a message.' It immediately clarifies the tool's scope and differentiates it from message-retrieval or message-movement siblings. It also points to list_tags for tag definitions, reinforcing its role in the tagging workflow.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives actionable guidance to use list_tags to see defined tags, which helps the agent choose the right sibling when it needs tag names. It does not state explicit exclusions for when not to use this tool, but the sibling purposes are distinct enough that the main usage context is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 8 tool updatesv0.1.0
    • First observedget_message
    • First observedget_message_link
    • First observedlist_mailboxes
    • First observedlist_tags
    • First observedmove_message
    • First observedopen_message_in_mailmate
    • First observedsearch_messages_tool
    • First observedtag_message

TDQS

A3.9/5.0
Disambiguation3/5

Most tools target distinct actions, but open_message_in_mailmate and get_message_link both open a message in MailMate, making their purposes fuzzy. get_message, get_message_link, and open_message_in_mailmate also form a confusingly similar group of message-URL tools.

Naming Consistency4/5

The set mostly follows a verb_noun pattern: list_tags, list_mailboxes, get_message, move_message, tag_message. The main deviations are the awkward search_messages_tool suffix and the longer open_message_in_mailmate form, but the pattern remains predictable.

Tool Count5/5

Eight tools is a well-scoped size for a MailMate server covering search, retrieval, navigation, mailbox listing, tagging, and moving messages. Each tool feels justified even if a couple overlap.

Completeness3/5

Retrieval and organization workflows are covered: search, read, move, tag, and open. However, an email client surface lacks obvious send/reply/delete and mark-read operations, and the search tool cannot filter by mailbox, which are notable gaps.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    A
    maintenance
    Enables Claude to interact with email accounts via IMAP and SMTP, providing tools for searching, reading, sending, and managing emails across multiple providers.
    40
    604
    90
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Enables Claude to control the macOS Mail app for reading, searching, drafting, sending, and managing emails directly from Claude Desktop.
    12
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables Claude to read, search, send, and manage email across multiple IMAP/SMTP accounts through OAuth 2.1-secured MCP tools.
    MIT

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/huckncatch/mailmate-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server