mailwarden
mailwarden is a native Gmail MCP server providing full mailbox triage for AI assistants, including reliable search, bulk operations, and a unique snooze system.
Search & Retrieval
search– Query Gmail using native syntax (e.g.from:foo is:unread); results are paginated and read-state predicates are re-verified against live labels to eliminate false positives.get_thread– Fetch full thread content: headers, plaintext/HTML bodies, and attachment metadata.list_labels– View all system and user-defined Gmail labels.
Label & Inbox Management
modify_labels– Add or remove labels on a thread.bulk_modify– Apply label changes to all messages matching a query (batched at 1000/call, with partial-failure reporting).archive,mark_read,mark_unread– Convenience wrappers for common triage actions.trash/untrash– Move a thread to Trash or restore it.
Snooze (unique feature)
snooze– Archives a thread and applies a dated label (MCP/Snoozed/YYYY-MM-DD) to resurface it in the inbox on a specified date.list_snoozed– See all snoozed threads and their due dates.unsnooze– Cancel a snooze and immediately return the thread to the inbox.sweep_snoozed– Resurface all due snoozed threads; safe to run repeatedly or on a schedule.
Attachments
download_attachment– Save attachments to a local path; never overwrites existing files; can be restricted to a safe download directory.
Security & Robustness
Read-only mode available; no send capability, no telemetry, no open ports by default.
Correctly decodes RFC 2047 headers and various charsets; API errors handled with exponential backoff retries.
Provides tools for searching, reading, labeling, archiving, trashing, downloading attachments, and snoozing threads in Gmail via the live Gmail API.
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., "@mailwardensearch for recent emails from john@example.com"
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.
mailwarden
A reliable, native Gmail MCP server — full mailbox triage for AI assistants, with the feature nobody else ships: snooze.
Highlights
Snooze — the feature nobody else ships. Archive a thread now, have it resurface in the inbox on a date. Built on dated labels + a sweep, so it works from any client and survives restarts.
Search you can trust. Gmail's own search index silently drops
is:unreadin some operator combinations —searchre-verifies every hit against its live labels and discards the index's false positives. Paginated viapageToken/nextPageToken.Bulk operations that scale.
bulk_modifyarchives/labels everything matching a query at 1000 messages per API request — with per-chunk partial-success reporting instead of all-or-nothing. The snooze sweep uses the same batch path.Structured outputs. Every tool declares an
outputSchemaand returns validatedstructuredContentalongside fenced JSON text — no parsing guesswork for clients.Small attack surface. No send tools (no exfiltration path for prompt-injected mail), optional read-only mode, no telemetry, no open ports by default, symlink-safe download fencing, injection-fenced output. One deliberate exception:
unsubscribe/bulk_unsubscribe(manage tier) contact the opt-out endpoint named in a message's own header — the only non-Google host mailwarden ever reaches, and aread-tier deployment makes no outbound request at all. Details under Security & privacy and Unsubscribing.Correct with real-world mail. RFC 2047 headers decoded (
=?UTF-8?B?…?=→ readable text), bodies decoded in their declared charset (no mojibake for ISO-8859-1/Shift_JIS mail), 429/5xx retried with exponential backoff.
Related MCP server: Gmail MCP
Why
Connectors that sync or cache your mailbox can lag behind it — and even Gmail's own search index is sometimes loose (see below). mailwarden talks straight to the live Gmail API (no cached snapshot) and re-verifies what the index returns, so what you see is what's actually there. It's a generic Gmail capability layer — keep your own rules/logic in your AI client, not in the server.
search goes one step further than the raw API: Gmail's threads.list index is sometimes loose for read-state operators — is:unread is silently dropped in some operator combinations (e.g. category:updates is:unread -in:inbox returns read mail too). Since every hit is fetched live anyway, search re-checks the unambiguous predicates (is:unread/is:read/is:starred/in:inbox/category:…, with negation) against each thread's true labels and drops the index's false positives.
Compared to other Gmail MCP servers
Most Gmail MCP servers cover the same read/label/send surface. Two capabilities are still unique to mailwarden, and one deliberate omission is a security feature, not a gap.
Capability | mailwarden | mcpemails.com | ||
Snooze — defer a thread back to the inbox on a date/time or preset | ✅ | — | — | — |
Search-result re-verification — drops the index's false positives against live labels | ✅ | — | — | — |
Sweep / bulk over a query — one action across every matching thread | ✅ 1000/req, partial-success | — | — | ⚠️ bulk organize (no query re-verification) |
No send tools — by design — a prompt-injected mail has no exfiltration path | ✅ no compose at all | ❌ sends | ⚠️ draft-only | ❌ sends |
Least-privilege tool tiers — OAuth scopes derived from the tools you enable | ✅ | — | ⚠️ scope split | ⚠️ scoped keys |
Token encryption at rest (optional) | ✅ AES-256-GCM | ✅ | n/a (hosted) | ✅ AES-256-GCM |
Runs fully local — no cloud copy of your mail | ✅ | ✅ | ❌ hosted | ❌ SaaS |
Structured outputs — every tool declares an | ✅ | — | — | — |
Snapshot as of August 2026, from each project's public docs/repo; — = not offered / not documented. Send capability is listed as a security property: mailwarden's lack of it is intentional (see Security & privacy).
The moat isn't any single row — it's snooze + live re-verification together: an actual inbox-workflow layer that acts on the mailbox's current state, not a cached snapshot. Where competitors have caught up (bulk actions, at-rest encryption) it's noted honestly above.
Why re-verification matters — a concrete case
Ask an assistant to "archive the unread promotional mail that's already skipped my inbox" and it will reach for the obvious query, category:updates is:unread -in:inbox. Gmail's threads.list index answers loosely here: it silently drops the is:unread constraint and hands back read mail too. A server that trusts the index now archives threads you'd already read — mail you never meant to touch, gone in a bulk action you can't easily reverse.
mailwarden fetches every hit live anyway, so search re-checks the unambiguous predicates (is:unread, is:read, in:inbox, category:…, with negation) against each thread's true labels and drops the index's false positives before any tool sees them. The bulk action then runs on exactly the set you asked for. This is the difference between acting on what Gmail indexed and acting on what's actually in the mailbox right now — and it's why snooze/sweep are safe to hand to an assistant: the sweep resurfaces only threads whose snooze is genuinely due, verified against live labels at run time.
See it yourself — no Gmail account needed. From a clone of the repo (the demo is a repo-only verification script, not part of the npm package):
git clone https://github.com/csitte/mailwarden && cd mailwarden
npm install && npm run build
node scripts/demo-reverify.mjsThe demo drives the real search() against a fake Gmail API whose index is deliberately loose (returns a read thread for an is:unread query, exactly as Gmail does) and shows mailwarden dropping the false positive. It asserts the outcome, so it exits non-zero if the behavior ever regresses. The same case is locked by unit tests in test/gmail.test.ts ("drops index false positives via live-label re-verify").
Tools
Tool | What it does |
| Gmail query syntax → thread summaries (from/subject/date/labels/snippet); read-state/category predicates are re-verified against each hit's live labels; paginated via |
| Full thread: headers, plaintext + HTML bodies, attachment metadata |
| All labels (system + user) |
| Connected account's address + total message/thread counts — confirm which mailbox is wired up before acting |
| Structured overview of a mailbox slice for decisions: top senders, label and age buckets, unread + attachment counts — instead of a raw thread list |
| What opt-out options a thread advertises ( |
| A mailbox slice grouped by sender: thread/unread counts, the date span each was seen over, and each one's opt-out options — one header fetch per sender, contacts nobody. |
| Create a user label (idempotent; nested via |
| Add/remove labels by name or id — an unknown name in |
| Batch label changes for every message matching a query — 1000 messages per API request, partial success reported per chunk (thread-id list capped at 500, |
| Convenience wrappers |
| Move to / restore from Trash |
| Save an attachment to a local path (never overwrites — collisions get a numeric suffix) |
| One-click opt-out (RFC 8058) using the endpoint from the message's own header — the only tool that contacts a non-Google host (details) |
| The same for several threads, sequentially and at most one request per sender; partial success reported per thread |
| Archive now, resurface on/after a date ( |
| Cancel a snooze, return to inbox now |
| All snoozed threads + due dates |
| Resurface threads whose snooze is due (run on demand, via cron, or the daemon); batched, with partial-failure reporting |
| All Gmail filters (criteria + label actions); surfaces any |
| Create a server-side auto-triage rule (criteria → label actions only; no forwarding — see below). Optionally |
| Delete a filter by id |
All tools declare an outputSchema and return structured content (validated, machine-readable)
alongside the same JSON as fenced text — clients never have to parse prose.
How snooze works (no Gmail API snooze exists — we build it)
snooze removes INBOX and applies a dated label MCP/Snoozed/<key>, where the key is either YYYY-MM-DD (due all day) or YYYY-MM-DDTHHMM (due at that local minute). The until argument takes an explicit date, a date+time (2026-06-20 9am, …T17:00), or a preset resolved server-side — today, tomorrow, weekend (next Saturday), next week (next Monday), a weekday name (monday–sunday, next occurrence), in N days, or in N hours — and a date preset may carry a trailing time (tomorrow 9am, monday 8:30), so the caller never has to compute the moment itself. sweep_snoozed finds due labels and returns those threads to the inbox (marked unread); a timed snooze wakes at the first sweep on/after its minute, so wake latency equals your sweep interval. Run the sweep:
on demand (
sweep_snoozedtool),via cron:
mailwarden --sweep,or automatically: set
MAILWARDEN_AUTO_SWEEP=1(hourly sweep while the server runs).
Filters (persistent auto-triage rules)
create_filter sets up a Gmail server-side rule: mail matching the criteria automatically gets the
given label actions — the mailbox keeps triaging itself with no assistant in the loop.
Criteria:
from,to,subject,query(full Gmail search syntax),negatedQuery,hasAttachment,excludeChats, andsize+sizeComparison(smaller/larger, given together). At least one is required.Actions (label only):
addLabels/removeLabels, by name or id (an unknown name inaddLabelsis auto-created, nested via/). Common recipes: skip the inbox →removeLabels: ["INBOX"]; auto-mark-read →removeLabels: ["UNREAD"]; auto-trash →addLabels: ["TRASH"]; star →addLabels: ["STARRED"]; never-spam →removeLabels: ["SPAM"]; file under a label →addLabels: ["Receipts"].Existing mail: a filter only runs on messages arriving after it's created. Pass
applyToExisting: trueto also apply the same actions once to mail already in the mailbox — mailwarden builds a Gmail search from the criteria and runs a bulk modify (up tomaxMessages, default 1000; same loose-index caveat asbulk_modify, and the one-off pass excludes Spam/Trash). This requires at least one positive criterion (from/to/subject/query/hasAttachment:true/size): an exclusion-only rule (negatedQueryorhasAttachment:false) is refused forapplyToExistingbecause it would match almost the whole mailbox — create such a filter without the flag. The outcome comes back underapplied(thequeryused,matchedMessages/modifiedMessages/modifiedThreadCountcounts,cappedwhen the match set hitmaxMessages, per-chunkfailed, and anerrorstring if the whole pass failed); it'snullwhenapplyToExistingwas not set. The filter is created first, so a partial or failed backlog pass is reported inapplied, never raised — the rule still stands.No forwarding — see Security & privacy.
Requires the
gmail.settings.basicscope; re-run--authonce if you authorized an older version. Not available in read-only mode.
Unsubscribing — the one outbound request
list_unsubscribe (read tier) reports what the sender offers, without contacting anyone. It reads the
newest message that actually carries a List-Unsubscribe header — a reply threaded onto a newsletter
sits at the end and advertises nothing, which would otherwise read as "this list has no opt-out".
list_subscriptions (read tier) does the same across a whole slice, grouped by sender, so you can see
who keeps writing and which of them can actually be left — one header fetch per sender rather than
per thread. unsubscribe and bulk_unsubscribe (manage tier) act on it — and that is the only
place mailwarden ever talks to a host that isn't Google, so the rules are tight:
There is no URL parameter. The endpoint comes from the message's own header and nowhere else. A URL argument would let a prompt-injected mail turn the tool into an exfiltration channel (mailbox content in a query string); the header cannot carry data the model chose.
Only RFC 8058 one-click is performed — the sender must have opted in via
List-Unsubscribe-Post. A plainhttps:link is meant for a human in a browser and is handed back, not fetched.mailto:opt-outs are never performed. They would require sending mail, which mailwarden cannot do. The address is reported so you can act on it yourself.Fixed request, discarded response. The POST body is always
List-Unsubscribe=One-Clickand is never derived from anything; the response body is cancelled unread. What returns to the model is the status code and the URL actually called — no content from the endpoint, so it cannot answer with instructions. (A 301/302/303 redirect is followed as a GET, i.e. with no body at all.)One request per sender, sequentially, inside one budget.
bulk_unsubscribetakes thread ids (never a query — a query-driven bulk would fire off a request per matched sender before anyone had looked). Threads from a sender whose request already went out are reported withduplicateOfand cost no second request: two threads from one list share an opt-out, and calling it twice only confirms your address twice. A sender is only recorded once a request actually reached an endpoint, so a refusal or a dropped connection still leaves the next thread its own try — and if the skipped thread advertises a different endpoint, the reason says so, since one sender can run several lists. Capped at 25 threads and 60 seconds per call; whatever the budget doesn't cover comes back asskippedOutOfTimerather than silently undone. None of it can be reversed, which is why all three limits exist.SSRF guards. https only, default port only, no credentials in the URL, and every hop — including redirects, followed at most 3 times — must resolve exclusively to globally reachable addresses. The check parses each address to its bytes and matches it against the IANA special-purpose registry, so every spelling of the same address gets the same verdict (
::1and0:0:0:0:0:0:0:1alike); an address that does not parse is refused. DNS resolution and all hops share one 10-second budget. Not rebinding-proof (fetchresolves again when it connects) — see SECURITY.md; what survives that gap is a blind POST whose response is never read.
Check it against your own mail before you trust it. From a repo clone (repo-only, not in the
npm package), after npm run build and mailwarden --auth:
node scripts/probe-unsubscribe.mjs --vet # category:promotions, 25 threads
node scripts/probe-unsubscribe.mjs "from:substack.com" --max 50 --vetIt prints each real List-Unsubscribe header next to what the parser made of it, and --vet also
runs the endpoint through the URL vetting and the address guard — so you see both whether the parser
understood the header and whether the guards would have let that opt-out through. Strictly
read-only: no request is ever made to a sender, and nothing in the mailbox changes.
What it can't undo: the request tells the sender your address is live. A sender that ignores its own
opt-out is beyond any client's reach — pair unsubscribe with create_filter or trash for those.
Not offering an automatable option is reported as unsubscribed:false with the alternatives, not as an
error. A read-only deployment gets list_unsubscribe and list_subscriptions, and never makes the
request at all.
Security & privacy
For the full threat model — trust boundary, per-threat mitigations, explicit non-goals, and how to report a vulnerability — see SECURITY.md. The highlights:
No telemetry. Nothing phones home — no analytics, no crash reporting, no tracking.
No open ports by default. stdio only. The optional
--httplistener binds to127.0.0.1(not the LAN) and refuses to start without aMAILWARDEN_TOKENbearer token — setMAILWARDEN_ALLOW_NO_TOKEN=1to override on a trusted, isolated network. On a loopback bind it also validates theHostheader (DNS-rebinding defense). For remote hosting, setMAILWARDEN_HOSTand front it with TLS.No send tools — by design. mailwarden cannot compose, reply, or forward. A prompt-injected instruction inside an email has no exfiltration path through this server.
create_filterfollows the same rule: it can label, archive, trash, star or mark mail, but never creates a forwarding filter (which would be an exfiltration path).list_filtersstill surfaces any forwarding filter already on the account, so you can spot one. This holds because no such tool exists and none can be registered at runtime; for the stronger variant, where Google refuses to send rather than mailwarden declining to, see Read-only mode below.One outbound host, no model-chosen URL. The
unsubscribetool is the only code path that contacts a non-Google host. Its endpoint is read from the message'sList-Unsubscribeheader — never from a tool argument — the request body is fixed and the response body is discarded, so it cannot become a data channel. https/default-port only, redirects re-validated, and any hop resolving to a private, loopback, link-local or metadata address is refused. See Unsubscribing.Tool tiers (progressive disclosure + least scope).
MAILWARDEN_TOOLSadvertises only the tiers you name —read(the read tools),manage(mailbox mutations, snooze, downloads),filters(server-side filter CRUD, the only tier whose tools needgmail.settings.basic). Default is all three; e.g.read,managegives a full triage surface without filter management. The OAuth scopes requested at--authare derived from the enabled tiers — areaddeployment asks only forgmail.readonly, andgmail.settings.basicis requested only when thefilterstier is on. And the filter tools are hidden automatically when the stored token doesn't carrygmail.settings.basic(e.g. a token authorized before you enabled the tier) — re-run--authto grant it. Older tokens without a recorded scope are advertised as before, with the runtime insufficient-scope message as the fallback.Read-only mode. Set
MAILWARDEN_READONLY=1(shorthand forMAILWARDEN_TOOLS=read) and only the read tools (search,get_thread,list_labels,list_snoozed,get_profile,triage_digest,list_unsubscribe,list_subscriptions) are registered — nothing that can change the mailbox or write files is even advertised to clients (the filter tools, which need the broadergmail.settings.basicscope, are excluded too). Recommended for shared/HTTP deployments that only triage. It is also the only tier whose no-send property Google enforces: it holds agmail.readonlytoken, which Gmail's send endpoints reject outright.manageneedsgmail.modify, and Gmail does accept that scope for sending — mailwarden simply exposes no tool that would. So areaddeployment could not send even if this binary were replaced; amanageone cannot send because there is nothing to call. (There is no send-free write scope to switch to — see SECURITY.md, threat 1.)Fenced downloads. With
MAILWARDEN_DOWNLOAD_DIRset, attachment writes are confined to that directory (realpath-canonicalized, symlink-aware) and never overwrite an existing file.Untrusted-content fencing. Every tool result is wrapped in
<untrusted-tool-output>markers and stripped of invisible/BiDi-override characters, so clients can tell quoted mail content from instructions.Live API, no copy. No mailbox mirror or search index is stored anywhere. The only local state is your OAuth token in
~/.mailwarden/.Optional token encryption at rest.
token.jsonholds a refresh token; on disk it is protected only bymode 0o600(a no-op on Windows). SetMAILWARDEN_TOKEN_PASSPHRASEto a passphrase and the token is stored AES-256-GCM-encrypted (scrypt-derived key), so a copy of the file — a backup, a synced folder, another machine — is useless without the passphrase. Re-runmailwarden --authonce after setting it to encrypt the existing token. Note the boundary: this defends against file theft, not against malware running as your user (which can read the passphrase from the environment too).
Quick start
claude mcp add mailwarden -- npx -y mailwardenThat's the whole install — npx fetches and runs the published package, no clone or build step. You only need Google OAuth credentials once (below).
Setup
First time setting up a Google OAuth app? Follow the step-by-step setup guide — it walks through the Google Cloud Console with exact click paths, explains the "unverified app" screen, and covers the trap that makes tokens die after 7 days. The short version:
Google Cloud: create a project → enable the Gmail API → configure the OAuth consent screen and publish it to Production (in Testing status, Google expires refresh tokens after 7 days) → create an OAuth client ID of type Desktop app → download it as
credentials.json.Put
credentials.jsonin~/.mailwarden/(or setMAILWARDEN_CREDENTIALS=/path/to/credentials.json).Authorize once — opens a browser, stores a refresh token in
~/.mailwarden/token.json:npx -y mailwarden --authScopes requested:
gmail.modify(read + label/archive/trash) andgmail.settings.basic(filter management only). If you authorized a version before filters existed, re-run--authonce to grant the added scope. To hold a token that Gmail itself refuses to send with, authorize withMAILWARDEN_TOOLS=read— see Read-only mode above.Verify the setup any time with the built-in doctor:
npx -y mailwarden --checkIt checks
credentials.json, whether a token exists (and if it's encrypted), whether the granted scopes cover your enabled tiers, and makes one live Gmail call to prove the token still works — printing a concrete fix for anything that's wrong, and exiting non-zero if so (handy in CI/health checks). Diagnoses the common traps: no/wrongcredentials file, never authorized, an encrypted token with noMAILWARDEN_TOKEN_PASSPHRASE, a missing scope, or the 7-day "Testing"-consent token expiry.
Connect
Claude Code (local stdio):
claude mcp add mailwarden -- npx -y mailwardenClaude Desktop — add to claude_desktop_config.json:
{
"mcpServers": {
"mailwarden": { "command": "npx", "args": ["-y", "mailwarden"] }
}
}Remote (Streamable HTTP) — for a VPS / claude.ai custom connector:
# Loopback + token required by default. For real hosting, bind outward and keep the token:
MAILWARDEN_TOKEN=<secret> MAILWARDEN_HOST=0.0.0.0 npx -y mailwarden --http # :8787/mcpThen in claude.ai: Settings → Connectors → Add custom connector → your https://your-host/mcp URL. In Claude Code: claude mcp add --transport http mailwarden https://your-host/mcp.
Multiple accounts
One OAuth app (one credentials.json) can authorize several Gmail accounts. Each account keeps its
own refresh token in a separate file, selected by MAILWARDEN_ACCOUNT:
mailwarden --auth --account work # stores token.work.json
mailwarden --auth --account personal # stores token.personal.jsonRun them side by side by registering the server once per account, each with its own
MAILWARDEN_ACCOUNT. Every instance is fully isolated — its own token, its own granted scopes, its
own tool surface — so nothing can act on the wrong mailbox:
{
"mcpServers": {
"gmail-work": { "command": "npx", "args": ["-y", "mailwarden"], "env": { "MAILWARDEN_ACCOUNT": "work" } },
"gmail-personal": { "command": "npx", "args": ["-y", "mailwarden"], "env": { "MAILWARDEN_ACCOUNT": "personal" } }
}
}Account names are case-insensitive — they become filenames, so Work and work would be the
same file on Windows/macOS. mailwarden lower-cases them (--account Work → token.work.json) so a
name always maps to exactly one mailbox.
mailwarden --check shows the active account and lists the others it finds. With no
MAILWARDEN_ACCOUNT set, everything uses the default token.json exactly as before — this is fully
backward compatible.
From source
git clone https://github.com/csitte/mailwarden && cd mailwarden
npm install && npm run build
node dist/index.js --authConfig (env)
Var | Meaning |
| config dir (default |
| path to |
| select a named account (its token is |
| passphrase → encrypt |
|
|
| restrict |
|
|
| comma-separated tool tiers to advertise: |
|
|
| HTTP port (default 8787) |
| HTTP bind address (default |
| bearer token for the HTTP endpoint — required for |
|
|
| extra comma-separated |
Status
Working and used in daily mailbox automation. Core Gmail tools + snooze implemented against googleapis, covered by a vitest suite (458 tests — npm run coverage). Current version: see the npm badge above, the changelog, or releases. PRs welcome.
License
MIT © C.Sitte Softwaretechnik
Maintenance
Related MCP Servers
- Alicense-qualityDmaintenanceAn MCP server that enables Gmail integration, allowing users to manage emails (send, receive, read, trash, mark as read) directly through MCP clients like Claude Desktop.1MIT
- AlicenseBqualityDmaintenanceManage your emails effortlessly with a standardized interface for drafting, sending, retrieving, and organizing messages. Streamline your email workflow with complete Gmail API coverage, including label and thread management.641,84956MIT
- Alicense-qualityAmaintenanceGmail MCP server — scope-gated tools (readonly / send / modify), path jails for attachments + downloads, hardened OAuth credentials, Sigstore-signed releases.22611MIT
- AlicenseAqualityFmaintenanceA Gmail MCP server with native multi-account support, enabling management of multiple Gmail accounts from a single server instance.75MIT
Related MCP Connectors
Read, search, send, organize, draft and schedule email across your inboxes from any MCP client.
Shipmail MCP server for AI agent custom-domain email inboxes with REST API and webhooks.
Hosted email MCP for AI agents with inboxes, send/receive, memory, recovery, and credits.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/csitte/mailwarden'
If you have feedback or need assistance with the MCP directory API, please join our Discord server