Skip to main content
Glama
neil-zielsdorf

tbird-mcp

tbird-mcp — Thunderbird-aware Mail MCP

An MCP server that reads/searches your mail from Thunderbird's local store and sends mail over SMTP from any of your identities, then files a copy in the account's Sent folder so it shows up in Thunderbird normally.

Thunderbird has no programmatic send API, so "send through Thunderbird" really means: read Thunderbird's on-disk mbox files, but put outgoing mail on the wire ourselves via SMTP. Account and identity configuration is auto-discovered from Thunderbird's prefs.js — you don't re-enter any of it.

What v1 does

  • Read — every account, from the local mbox store. Streams even multi-gigabyte folders without loading them into memory, and skips messages Thunderbird has flagged deleted-but-not-compacted.

  • Send — any plain-SMTP identity (Migadu, Zoho, Fastmail, generic SMTP, …), auto-discovered from Thunderbird.

  • Deferred to v2 — sending as Outlook/hotmail. Microsoft disabled basic SMTP auth for personal accounts, so it needs a Microsoft Graph / OAuth2 app registration. The transport seam is in place (transports.GraphTransport); until then, send_mail from an Outlook identity returns a clear error.

Related MCP server: email-mcp

Tools

Tool

Purpose

list_accounts

Incoming accounts + their on-disk store dir

list_folders(account)

mbox folders for an account

search_mail(...)

Filter by account/folder/since/before/from/to/subject/body/has_attachment

read_message(message_id)

Headers + decoded body

list_attachments(message_id)

Attachment filenames

extract_attachments(message_id, dest_dir)

Save attachments (the PDFs) to disk

list_identities

Send-from addresses + whether each can send now

send_mail(...)

Send via SMTP, file a copy in Sent. dry_run=True by default

reload_config

Re-read prefs.js / credentials.toml after editing

search_mail returns an opaque id per message; pass it to the read/extract tools. send_mail defaults to dry_run=True and returns a preview — pass dry_run=False to actually send.

Install

cd ~/agents/personal/mcp-servers/tbird-mcp
uv sync                 # creates .venv with the mcp SDK
uv run python tests/make_fixture.py   # (tests only) generate the sample mbox
uv run pytest -q        # 20+ tests, no real mail sent

1. Register with Claude Code

Add to your MCP config (e.g. ~/.claude.json, or via claude mcp add):

{
  "mcpServers": {
    "tbird": {
      "command": "uv",
      "args": ["run", "--directory",
               "/path/to/tbird-mcp",
               "tbird-mcp"]
    }
  }
}

Optional environment overrides:

  • TBIRD_PROFILE — absolute path to a specific Thunderbird profile dir (default: the active profile from profiles.ini).

  • TBIRD_CREDENTIALS — path to the credentials file (default: ~/.config/tbird-mcp/credentials.toml).

2. Add credentials (only needed for sending)

Reading needs no credentials. Sending does:

mkdir -p ~/.config/tbird-mcp
cp credentials.toml.example ~/.config/tbird-mcp/credentials.toml
chmod 600 ~/.config/tbird-mcp/credentials.toml
$EDITOR ~/.config/tbird-mcp/credentials.toml

Use app passwords, not your account login passwords:

  • Migadu — Admin → Mailboxes → the mailbox → App passwords → create one. Aliases can't authenticate; create the app password on the real mailbox and point each alias at it with an [identity."alias@…"] auth_user = "…" block. One mailbox app password typically covers all aliases on its domain.

  • Zoho — myaccount.zoho.com → Security → App Passwords → generate.

After editing, call reload_config (or restart the server).

3. (Later) v2 — sending as Outlook/hotmail

Outlook/hotmail send needs a one-time, free Azure app registration to obtain a client ID, then OAuth2 device-code auth against Microsoft Graph's Mail.Send scope. The graph transport slot is already wired into the identity registry; v2 fills in GraphTransport.send. Until then, send from a Migadu/Zoho/SMTP identity, or use Thunderbird directly.

Notes / limitations

  • Search streams the whole folder file, so a query against a multi-gigabyte folder takes a few seconds — narrow with account + a tight limit.

  • Message ids encode a byte offset into the mbox; if Thunderbird compacts a folder, re-run the search to get fresh ids.

  • Sub-folders inside *.sbd directories aren't enumerated in v1 (top-level folders only).

Available Tools

9 tools
extract_attachmentsB

Save a message's attachments to dest_dir; returns the written file paths.

ParametersJSON Schema
NameRequiredDescriptionDefault
dest_dirYes
message_idYes

TDQS

B3.1/5.0
Behavior2/5

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

No annotations exist, so description must carry behavioral burden. It does not disclose side effects (e.g., overwriting, permissions, error conditions) or whether it modifies the message.

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

Conciseness4/5

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

Very concise single sentence with clear action. Could add parameter details without significant bloat, but current brevity is efficient.

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

Completeness3/5

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

For a simple 2-param tool with no output schema, description is adequate but missing explanation for message_id and usage context. It covers the core action but not fully complete.

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

Parameters2/5

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

Schema coverage is 0%, requiring description to explain parameters. Only dest_dir is mentioned; message_id is not explained (e.g., format, source). Minimal value added beyond schema field names.

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 clearly states the verb 'Save' and the resource 'message's attachments', with the destination directory and return of file paths. It distinguishes from sibling 'list_attachments' which only lists metadata.

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?

No guidance on when to use this tool versus alternatives like list_attachments or read_message. No exclusions or context provided.

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

list_accountsA

List incoming mail accounts discovered from Thunderbird (with their on-disk store).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior4/5

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

No annotations provided, so description carries full burden. It implies a read-only operation by stating 'discovered from Thunderbird' and describes what is returned (accounts with on-disk store). However, it does not disclose potential side effects (e.g., whether it triggers a refresh).

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?

Single sentence, 12 words, front-loaded with the action verb and resource. No unnecessary information.

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?

Has an output schema, so description does not need to detail return values. Covers essential context (source, what is listed). Could be more precise about the format or limitations (e.g., filter criteria), but given zero parameters, it is sufficient.

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?

No parameters exist in the input schema, so description does not need to provide parameter details. Baseline score of 4 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 specifies the verb 'List' and resource 'incoming mail accounts' with source ('Thunderbird') and additional detail ('with their on-disk store'). This clearly distinguishes it from sibling tools like list_folders, which lists folders.

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?

No explicit guidance on when to use versus alternatives. While the resource name makes it clear it's for listing accounts, the tool would benefit from noting that for folder or mail operations, siblings should be used.

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

list_attachmentsC

List attachment filenames on a message.

ParametersJSON Schema
NameRequiredDescriptionDefault
message_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

C2.6/5.0
Behavior2/5

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

No annotations provided; description only states action. Does not disclose whether the tool requires permissions, returns metadata vs content, or any side effects. Minimal behavioral info.

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

Conciseness4/5

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

Extremely concise at 4 words, no wasted text. However, it may be too brief, sacrificing valuable context for brevity.

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

Completeness2/5

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

Despite having an output schema, the description does not explain what the output contains beyond 'filenames'. Lacks details on pagination, sorting, or error cases. Incomplete for a complete understanding.

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

Parameters1/5

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

Schema description coverage is 0%; description does not discuss the 'message_id' parameter at all. Agent receives no help understanding the parameter's format, meaning, or constraints.

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

Purpose4/5

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

Description clearly states it lists attachment filenames on a message. It distinguishes from 'extract_attachments' which likely downloads files, and 'read_message' which shows full content. However, it does not explicitly differentiate from siblings.

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?

No guidance on when to use this over other tools like 'extract_attachments'. No context about prerequisites or use cases.

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

list_foldersC

List mbox folder names for an account (by email address).

ParametersJSON Schema
NameRequiredDescriptionDefault
accountYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations, the description only indicates a read operation but lacks details on authentication, error behavior, or response structure.

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

Conciseness4/5

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

The description is a single, concise sentence with no redundancy, efficiently conveying the core purpose.

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

Completeness3/5

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

The tool is simple with one parameter and an output schema, so the description covers the basics. However, it omits behavioral and usage context that would be helpful for an agent.

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

Parameters2/5

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

The single parameter 'account' has no schema description (0% coverage). The description adds 'by email address', clarifying the parameter's meaning, but offers no format or constraints.

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

Purpose4/5

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

The description clearly states 'List mbox folder names for an account (by email address)', specifying a verb, resource, and scope. It distinguishes from siblings like list_accounts and search_mail, though it could be more explicit about its uniqueness.

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 provides no guidance on when to use this tool versus alternatives, nor does it mention prerequisites or exclusions.

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

list_identitiesA

List send-from identities and whether each can send right now.

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 reveals that the tool returns a list with a per-identity send status ('whether each can send right now'), which is a behavioral trait. For a zero-parameter tool, this is adequate, though it does not mention authentication or rate limits.

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 a single, concise sentence that efficiently conveys the tool's purpose and behavior without any unnecessary words.

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?

Given the tool has no parameters and an output schema exists, the description is complete enough. It covers the essential information: listing identities and their send readiness.

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?

There are no parameters, and the input schema is empty (100% coverage). With zero params, the baseline is 4, and the description does not need to add anything beyond what the schema provides.

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 clearly states the tool lists 'send-from identities' and includes the specific behavior of indicating whether each can send 'right now'. It uses the verb 'list' and the resource 'identities', which distinguishes it from sibling tools like list_accounts (accounts) and list_folders (folders).

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 usage for checking send capabilities of identities, but it provides no explicit when-to-use or when-not-to-use guidance. It does not mention alternatives or contexts where sibling tools might be more appropriate.

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

read_messageA

Read one message by its id (from search_mail): headers + decoded body.

ParametersJSON Schema
NameRequiredDescriptionDefault
message_idYes
prefer_htmlNo

TDQS

A4/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 full burden. It correctly indicates a read-only operation and specifies the return format (headers + decoded body). However, it does not disclose other behavioral traits such as error handling, prerequisites, or rate limits, though for a simple read tool this is acceptable.

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 a single, well-structured sentence front-loaded with the action and key details. No extraneous information, every word adds value.

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?

Given the tool's simplicity and the presence of sibling tools like search_mail and list_attachments, the description is sufficiently complete. It covers the main purpose, input linking, and output, though it does not mention optional parameters or error conditions.

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 0%, so the description must compensate. It clarifies that message_id comes from search_mail, adding meaning beyond the schema. However, the prefer_html parameter remains unexplained, so the description only partially addresses the two parameters.

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 clearly states the verb 'read', the resource 'one message', and specifies identification via 'id from search_mail'. It also describes the output as 'headers + decoded body'. This distinguishes it from siblings like search_mail (which returns a list) and list_attachments.

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 implies that this tool should be used after search_mail to get full message content. However, it does not explicitly state when not to use it or compare with alternatives, so it provides clear context but no exclusions.

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

reload_configA

Re-read Thunderbird prefs.js and credentials.toml (after editing either).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.4/5.0
Behavior4/5

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

No annotations provided, so description carries full burden. It discloses that the tool re-reads two specific configuration files, implying it refreshes application state. For a zero-parameter, non-destructive read operation, this is adequate behavioral disclosure.

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?

Exactly one sentence, no fluff. Every word is meaningful and adds to understanding.

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 zero-parameter tool with no output schema and a straightforward operation (reload config), the description is complete. It specifies the files involved and the trigger condition. Could optionally mention that existing connections remain active, but not required for basic understanding.

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?

Tool has no parameters, and schema coverage is trivially 100%. Description adds value by specifying which files are reloaded, 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?

Description clearly states the action ('Re-read') and the specific resources ('Thunderbird prefs.js and credentials.toml'), and provides context ('after editing either'). It distinguishes from sibling tools which perform list, search, read, or send operations on mail/folders, not config reload.

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?

Description explicitly states when to use the tool ('after editing either'), providing clear context. It does not mention when not to use it or alternatives, but given the simplicity and uniqueness among siblings, this is sufficient.

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

search_mailA

Search a folder's mbox.

Filters are ANDed and case-insensitive substring matches. since/before take ISO dates (YYYY-MM-DD). Without account, searches every account's folder. Returns summaries with an opaque id for read/extract. Note: searching a very large folder streams the whole file and can take a few seconds; narrow with account and a tight limit when possible.

ParametersJSON Schema
NameRequiredDescriptionDefault
bodyNo
limitNo
sinceNo
beforeNo
folderNoINBOX
accountNo
subjectNo
to_addressNo
from_addressNo
has_attachmentNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description effectively discloses behavioral traits: filters are ANDed case-insensitive substring matches, date format, performance impact for large folders, and return type (summaries with opaque id). Minor omission: error handling for missing folders or no results.

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 concise (~80 words) and well-structured: one-line purpose, filter details, date format, account behavior, return type, and performance advice. No unnecessary words; every sentence adds value.

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?

Given 10 optional parameters and no output schema, the description covers core behavior, filter logic, and performance notes. It explains return type (summaries with opaque id) which compensates for missing output schema. Could mention pagination or result ordering.

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?

Despite 0% schema description coverage, the description adds meaning for key parameters (since/before take ISO dates, limit defaults, account defaults to all accounts, folder defaults to INBOX). It explains filter behavior (ANDed substring match) that applies to all text parameters. Could be more explicit about each parameter's purpose.

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 clearly states the tool searches a folder's mbox, explains it searches across accounts and returns summaries with an opaque id. It distinguishes from siblings like list_accounts and read_message by focusing on search functionality.

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 provides guidance on when to use (searching mail), mentions performance considerations and suggests narrowing with account and limit. It implies alternatives like read_message for full content via 'opaque id for read/extract', but lacks explicit when-not-to-use statements.

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

send_mailA

Send mail from one of your identities (SMTP), then file a copy in Sent.

from_address must be a configured identity (see list_identities). Multiple recipients may be comma-separated. Hotmail/Outlook send is not available in v1 and returns a clear error.

SAFETY: dry_run defaults to True — it returns a preview without sending. Pass dry_run=False to actually send.

ParametersJSON Schema
NameRequiredDescriptionDefault
ccNo
toYes
bccNo
bodyYes
htmlNo
dry_runNo
subjectYes
attachmentsNo
from_addressYes

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description bears full burden. It discloses key behaviors: sending, filing a copy, default dry_run, and an important provider limitation. Could add error handling details, but current disclosure is solid.

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?

Efficiently structured with purpose, prerequisites, and a safety callout. Every sentence adds value, no fluff.

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

Completeness3/5

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

Covers the main purpose and safety, but with no output schema and many optional parameters undocumented in the description, the agent may miss how to use CC, BCC, attachments, or HTML. Still adequate for a send operation.

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?

With 0% schema description coverage and 9 parameters, the description only adds meaning to from_address (must be configured) and dry_run (default True, safety). CC, BCC, attachments, and html are left unexplained despite being non-trivial.

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?

Clearly states the tool sends mail from configured identities and files a copy in Sent. Distinct from all sibling tools which focus on reading, searching, and listing.

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?

Provides clear prerequisites (from_address must be a configured identity) and limitations (Hotmail/Outlook not supported). Dry_run safety note tells when to actually send. No explicit when-not-to-use, but as the only send tool, this is acceptable.

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

TDQS

A3.7/5.0
Disambiguation5/5

Each tool targets a distinct action: listing accounts, listing folders, searching, reading, attachments, identities, sending, and reloading config. There is no overlap in functionality.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern in snake_case (e.g., list_accounts, search_mail, send_mail), making it easy to predict tool names.

Tool Count5/5

9 tools is well-scoped for a Thunderbird mail MCP, covering essential operations without being overwhelming or too sparse.

Completeness4/5

The set covers key mail operations (account listing, search, read, send, attachments) but is missing operations like create/delete folders or mark as read, which are minor gaps for the intended use.

Maintenance

ActivityInactive
ResponsivenessSyncing

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

  • F
    license
    Not graded
    quality
    B
    maintenance
    Enables email management for a single mailbox via IMAP and SMTP protocols. Supports reading, searching, and sending emails with threading support through stdio or HTTP transports.
  • A
    license
    A
    quality
    D
    maintenance
    Local MCP server for multi-account IMAP/SMTP email (iCloud + Gmail via app-specific passwords). Never marks mail read. Cross-folder search, idempotent sends, TLS verified.
    8
    MIT
  • F
    license
    Not graded
    quality
    B
    maintenance
    Local MCP server for Thunderbird: read, search, and send emails and manage calendars, contacts, notes, and tasks across every mailbox (Gmail, Outlook, IMAP). Runs on your machine and talks to your Thunderbird locally — reads are open, writes are gated behind ATBRIDGE_ALLOW_WRITES.
    1

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/neil-zielsdorf/tbird-mcp'

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