Sendmux Email Inbox API + Sending
Sendmux is an email inbox API and email API for AI agents. Use this MCP server to let authorised agents work with Sendmux mailboxes, inbound email, clean JSON parsing, webhooks, outbound sending, provider routing, logs, billing, and team controls.
README
Sendmux SDKs
Official SDK, CLI, and MCP workspace for Sendmux.
- Product documentation: sendmux.ai/docs
- Management API reference: sendmux.ai/docs/api/introduction
- Mailbox API reference: sendmux.ai/docs/mailbox-api/introduction
- Sending API reference: sendmux.ai/docs/sending-api/introduction
- MCP guide: sendmux.ai/docs/guides/mcp
Packages
| Ecosystem | Package | Surface | API key or auth | Install | Source |
|---|---|---|---|---|---|
| npm | @sendmux/core |
Shared TypeScript helpers | n/a | npm install @sendmux/core |
packages/ts/core |
| npm | @sendmux/sending |
Sending API | smx_mbx_* |
npm install @sendmux/sending |
packages/ts/sending |
| npm | @sendmux/mailbox |
Mailbox API | smx_mbx_* |
npm install @sendmux/mailbox |
packages/ts/mailbox |
| npm | @sendmux/management |
Management API | smx_root_* |
npm install @sendmux/management |
packages/ts/management |
| npm | @sendmux/sdk |
TypeScript umbrella package | surface-specific | npm install @sendmux/sdk |
packages/ts/sdk |
| npm | @sendmux/cli |
sendmux CLI |
command/profile-specific | npm install -g @sendmux/cli |
packages/ts/cli |
| Homebrew | sendmux |
sendmux CLI |
command/profile-specific | brew install sendmux/tap/sendmux |
Sendmux/homebrew-tap |
| PyPI | sendmux-core |
Shared Python helpers | n/a | pip install sendmux-core |
packages/python/core |
| PyPI | sendmux-sending |
Sending API | smx_mbx_* |
pip install sendmux-sending |
packages/python/sending |
| PyPI | sendmux-mailbox |
Mailbox API | smx_mbx_* |
pip install sendmux-mailbox |
packages/python/mailbox |
| PyPI | sendmux-management |
Management API | smx_root_* |
pip install sendmux-management |
packages/python/management |
| PyPI | sendmux-sdk |
Python umbrella package | surface-specific | pip install sendmux-sdk |
packages/python/sdk |
| PyPI | sendmux-mcp |
Local, self-hosted, and hosted MCP servers | OAuth for hosted; surface-specific keys for local | pip install sendmux-mcp |
packages/python/mcp |
| Go | sendmux.ai/go/core |
Shared Go helpers | n/a | go get sendmux.ai/go@v1.0.0 |
go/core |
| Go | sendmux.ai/go/sending |
Sending API | smx_mbx_* |
go get sendmux.ai/go@v1.0.0 |
go/sending |
| Go | sendmux.ai/go/mailbox |
Mailbox API | smx_mbx_* |
go get sendmux.ai/go@v1.0.0 |
go/mailbox |
| Go | sendmux.ai/go/management |
Management API | smx_root_* |
go get sendmux.ai/go@v1.0.0 |
go/management |
| Go | sendmux.ai/go/sdk |
Go umbrella package | surface-specific | go get sendmux.ai/go@v1.0.0 |
go/sdk |
| crates.io | sendmux |
Rust umbrella crate | surface-specific | cargo add sendmux |
rust |
| Packagist | sendmux/core |
Shared PHP helpers | n/a | composer require sendmux/core:^1.0 |
packages/php/core |
| Packagist | sendmux/sending |
Sending API | smx_mbx_* |
composer require sendmux/sending:^1.0 |
packages/php/sending |
| Packagist | sendmux/mailbox |
Mailbox API | smx_mbx_* |
composer require sendmux/mailbox:^1.0 |
packages/php/mailbox |
| Packagist | sendmux/management |
Management API | smx_root_* |
composer require sendmux/management:^1.0 |
packages/php/management |
| Packagist | sendmux/sdk |
PHP umbrella package | surface-specific | composer require sendmux/sdk:^1.0 |
packages/php/sdk |
| RubyGems | sendmux-core |
Shared Ruby helpers | n/a | gem install sendmux-core |
packages/ruby/core |
| RubyGems | sendmux-sending |
Sending API | smx_mbx_* |
gem install sendmux-sending |
packages/ruby/sending |
| RubyGems | sendmux-mailbox |
Mailbox API | smx_mbx_* |
gem install sendmux-mailbox |
packages/ruby/mailbox |
| RubyGems | sendmux-management |
Management API | smx_root_* |
gem install sendmux-management |
packages/ruby/management |
| RubyGems | sendmux-sdk |
Ruby umbrella package | surface-specific | gem install sendmux-sdk |
packages/ruby/sdk |
Quick start
Install only the package for the surface you need.
npm install @sendmux/sending
pip install sendmux-sending
go get sendmux.ai/go@v1.0.0
cargo add sendmux
composer require sendmux/sending:^1.0
gem install sendmux-sending
Use mailbox-compatible smx_mbx_* or smx_agent_* tokens for Sending and Mailbox clients. Use root smx_root_* keys for Management clients. Agent tokens remain limited by server-side scopes.
For command-line access, install the CLI:
brew install sendmux/tap/sendmux
npm install -g @sendmux/cli
sendmux --help
For MCP clients, install sendmux-mcp or connect to the hosted MCP endpoint:
pip install sendmux-mcp
sendmux-mcp-mailbox --help
The hosted product MCP endpoint is https://mcp.sendmux.ai/mcp. Local MCP commands support stdio and HTTP transports; hosted MCP uses OAuth.
Repository structure
| Path | Purpose |
|---|---|
packages/ts |
TypeScript SDK packages and the sendmux CLI. |
packages/python |
Python SDK packages and the sendmux-mcp package. |
go |
Go module sendmux.ai/go and subpackages. |
rust |
Rust crate published as sendmux on crates.io. |
packages/php |
PHP package sources used for Packagist packages and public split repositories. |
packages/ruby |
RubyGem package sources. |
codegen |
Generator configuration and templates. |
scripts |
Generation, verification, publishing, and release helper scripts. |
docs |
Surface-coverage and live E2E audit artefacts. |
.github/workflows |
CI, canary, live E2E, and release workflows. |
Versioning and support
SDK packages track the Sendmux public API contracts. Patch versions can differ between packages when a fix only affects one ecosystem or runtime.
Generated clients are built from committed OpenAPI snapshots. Any API contract change must update the snapshots and generated output in the same change.
For help, open a GitHub issue with the package name, version, command or import path, and the request ID from any API error response.
Contributing
Open pull requests against this repository. Keep generated output, source snapshots, and verification artefacts together in the same change.
Security issues should be reported through GitHub Security Advisories.
Licence
This repository is available under the MIT licence.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。