Skip to main content
ClaudeWave

Postfleet MCP server — give an AI agent its own email address

MCP ServersOfficial Registry0 stars0 forksTypeScriptMITUpdated today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Last scanned: 8/25/2026
Install in Claude Code / Claude Desktop
Method: NPX · @postfleet/mcp
Claude Code CLI
claude mcp add postfleet-mcp -- npx -y @postfleet/mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "postfleet-mcp": {
      "command": "npx",
      "args": ["-y", "@postfleet/mcp"],
      "env": {
        "POSTFLEET_API_KEY": "<postfleet_api_key>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Detected environment variables
POSTFLEET_API_KEY
Use cases

MCP Servers overview

# Postfleet MCP

Give an AI agent its own email address. [Postfleet](https://postfleet.ai) is email infrastructure for
agents — inbound is parsed, classified, extracted to your schema, and screened for prompt injection
before your agent reads a word.

This repo holds the server source and its plugin manifests. It is a **mirror** — the code is
developed in the Postfleet application repo and published to npm as
[`@postfleet/mcp`](https://www.npmjs.com/package/@postfleet/mcp); open issues here, send patches
here, and they land upstream. The server ships two ways:

| | |
|---|---|
| **Hosted** (no install) | `https://api.postfleet.ai/api/mcp`, streamable HTTP, `Authorization: Bearer pf_...` |
| **Local** (stdio) | [`@postfleet/mcp`](https://www.npmjs.com/package/@postfleet/mcp) via `npx` |

Get a `pf_` API key at [postfleet.ai](https://postfleet.ai).

## Tools

`list_mailboxes`, `create_mailbox`, `list_domains`, `create_domain`, `verify_domain`,
`send_email`, `reply_email`, `list_inbox`, `read_email`, `wait_for_email` — plus the draft
lifecycle (`create_draft`, `list_drafts`, `get_draft`, `update_draft`, `send_draft`,
`delete_draft`) for flows where a human approves before mail goes out. A send that lands in
that gate returns **202 pending_approval**, which is not a failure.

Every tool is thin-over-REST — it calls the same `/api/v1/` endpoints your key already reaches
([OpenAPI](https://postfleet.ai/openapi.json)), so auth, scoping, and quotas are enforced once.

## Install

### Cursor marketplace plugin

The manifests in this repo (`mcp.json`, `.cursor-plugin/plugin.json`) declare
`headers.Authorization = Bearer ${POSTFLEET_API_KEY}` for the hosted server and the same
variable for local `npx @postfleet/mcp`. Installing the plugin should prompt for that key and
attach it as a real Bearer header — a raw URL add without the header will 401 on
`initialize` until a key is supplied or the hosted connect card finishes OAuth.

### Cursor (manual)

```json
{
  "mcpServers": {
    "postfleet": {
      "url": "https://api.postfleet.ai/api/mcp",
      "headers": { "Authorization": "Bearer pf_your_key_here" }
    }
  }
}
```

### Local stdio (`npx -y @postfleet/mcp`)

```bash
npx -y @postfleet/mcp
```

Any MCP client that speaks stdio can run that command with `POSTFLEET_API_KEY` set:

```json
{
  "mcpServers": {
    "postfleet": {
      "command": "npx",
      "args": ["-y", "@postfleet/mcp"],
      "env": { "POSTFLEET_API_KEY": "pf_your_key_here" }
    }
  }
}
```

### Claude Code

```bash
claude mcp add postfleet --env POSTFLEET_API_KEY=pf_your_key_here -- npx -y @postfleet/mcp
```

`POSTFLEET_API_URL` (default `https://api.postfleet.ai`) overrides the API origin for staging or
self-hosted deployments.

## Keys

Keys are scoped — `bootstrap` can only create mailboxes, `api` covers mail operations, `mcp` is the
one to hand a client. Use a separate key per workload so you can revoke one without breaking the
rest. Never commit a key; the manifests in this repo deliberately contain none.

## Links

- Registry listing: `ai.postfleet/postfleet` on the [MCP Registry](https://registry.modelcontextprotocol.io)
- npm: [`@postfleet/mcp`](https://www.npmjs.com/package/@postfleet/mcp)
- Docs: [postfleet.ai/docs/mcp](https://postfleet.ai/docs/mcp)

## Build from source

```bash
npm install && npm run build   # tsup → dist/
```

MIT licensed.

What people ask about postfleet-mcp

What is Thestral12/postfleet-mcp?

+

Thestral12/postfleet-mcp is mcp servers for the Claude AI ecosystem. Postfleet MCP server — give an AI agent its own email address It has 0 GitHub stars and its last recorded update is dated 2026-08-24.

How do I install postfleet-mcp?

+

You can install postfleet-mcp by cloning the repository (https://github.com/Thestral12/postfleet-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is Thestral12/postfleet-mcp safe to use?

+

Our security agent has analyzed Thestral12/postfleet-mcp and assigned a Trust Score of 87/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.

Who maintains Thestral12/postfleet-mcp?

+

Thestral12/postfleet-mcp is maintained by Thestral12. The last recorded GitHub activity is dated 2026-08-24, with 0 open issues.

Are there alternatives to postfleet-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy postfleet-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: Thestral12/postfleet-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/thestral12-postfleet-mcp)](https://claudewave.com/repo/thestral12-postfleet-mcp)
<a href="https://claudewave.com/repo/thestral12-postfleet-mcp"><img src="https://claudewave.com/api/badge/thestral12-postfleet-mcp" alt="Featured on ClaudeWave: Thestral12/postfleet-mcp" width="320" height="64" /></a>

More MCP Servers

postfleet-mcp alternatives