Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## [Unreleased]

## [0.3.0] - 2026-03-31

* Support optional **display names** on `from`, `to`, `cc`, and `bcc` for **send-email** and **send-sandbox-email** (addresses can be plain email or `Name <email@example.com>` style). See https://github.com/mailtrap/mailtrap-mcp/pull/72
* Resolve **npm audit** findings; refresh **package-lock.json** accordingly. See https://github.com/mailtrap/mailtrap-mcp/pull/73
* Add npm **overrides** for `minimatch` and `tmp`; bump **@anthropic-ai/mcpb** dev dependency from 1.1.1 to 2.1.2.

## [0.2.0] - 2026-03-30

* Add **sandbox project & inbox management** tools: **list-sandbox-projects**, **create-sandbox-project**, **delete-sandbox-project**, **create-sandbox-inbox**, **get-sandbox-inbox**, **update-sandbox-inbox**, **delete-sandbox-inbox**, **clean-sandbox-inbox**.
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": "0.2",
"name": "mailtrap-mcpb",
"display_name": "Mailtrap",
"version": "0.2.0",
"version": "0.3.0",
"description": "Send emails and manage templates using Mailtrap",
"long_description": "**[Mailtrap.io](https://mailtrap.io)** is a comprehensive email platform that helps developers and teams test, debug, and deliver emails safely. It provides both email testing (sandbox) and email delivery services. \n This MCP (Model Context Protocol) server provides AI assistants with the ability to: \n - **Send emails** via Mailtrap's delivery API \n - **Test emails** using Mailtrap's sandbox environment \n - **Manage email templates** (create, update, delete, list).",
"author": {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mcp-mailtrap",
"version": "0.2.0",
"version": "0.3.0",
"description": "Official MCP Server for Mailtrap",
"license": "MIT",
"author": "Railsware Products Studio LLC",
Expand Down
2 changes: 1 addition & 1 deletion src/config/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
MCP_SERVER_NAME: "mailtrap-mcp-server",
MCP_SERVER_VERSION: "0.2.0",
MCP_SERVER_VERSION: "0.3.0",
USER_AGENT: "mailtrap-mcp (https://github.com/mailtrap/mailtrap-mcp)",
};
Loading