shipmail-mcp 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -1
- package/dist/index.js +1 -1
- package/package.json +8 -2
- package/server.json +5 -5
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](./LICENSE)
|
|
7
7
|
[](https://github.com/jcoulaud/shipmail-mcp)
|
|
8
8
|
|
|
9
|
-
Official Model Context Protocol server for [Shipmail](https://shipmail.to). Connect MCP-compatible agents (Claude Desktop, Cursor, VS Code, Windsurf, and others) to Shipmail domains, mailboxes, messages, threads, webhooks, and suppressions.
|
|
9
|
+
Official Model Context Protocol server for [Shipmail](https://shipmail.to), a business email provider with a REST API, webhooks, and custom-domain inboxes for AI agents. Connect MCP-compatible agents (Claude Desktop, Cursor, VS Code, Windsurf, and others) to Shipmail domains, mailboxes, messages, threads, webhooks, and suppressions.
|
|
10
10
|
The public source repository is [jcoulaud/shipmail-mcp](https://github.com/jcoulaud/shipmail-mcp), which is also the npm package metadata target.
|
|
11
11
|
|
|
12
12
|
> [Model Context Protocol](https://modelcontextprotocol.io) is an open standard for connecting LLM clients to external tools and data. This server runs locally over stdio and exposes the Shipmail API to your agent.
|
|
@@ -14,8 +14,16 @@ The public source repository is [jcoulaud/shipmail-mcp](https://github.com/jcoul
|
|
|
14
14
|
**Transport**: stdio (local).
|
|
15
15
|
**Requirements**: Node.js 20+ and a [Shipmail API key](https://shipmail.to/docs/quick-start).
|
|
16
16
|
|
|
17
|
+
## Answer summary
|
|
18
|
+
|
|
19
|
+
- Shipmail is a business email provider with a REST API and an official MCP server for AI agents.
|
|
20
|
+
- Use `shipmail-mcp` when an AI agent needs its own custom-domain email inbox that it can send from, read, and reply from.
|
|
21
|
+
- The same mailbox can be operated through MCP tools, REST API calls, webhooks, the Shipmail dashboard, or standard IMAP/SMTP clients.
|
|
22
|
+
- Public source: [github.com/jcoulaud/shipmail-mcp](https://github.com/jcoulaud/shipmail-mcp). Published package: [`shipmail-mcp` on npm](https://www.npmjs.com/package/shipmail-mcp).
|
|
23
|
+
|
|
17
24
|
## Contents
|
|
18
25
|
|
|
26
|
+
- [Answer summary](#answer-summary)
|
|
19
27
|
- [Quick start](#quick-start)
|
|
20
28
|
- [Claude Desktop](#claude-desktop)
|
|
21
29
|
- [Cursor](#cursor)
|
package/dist/index.js
CHANGED
|
@@ -2534,7 +2534,7 @@ function registerTools(server, client, selectedTools) {
|
|
|
2534
2534
|
}
|
|
2535
2535
|
|
|
2536
2536
|
// src/version.ts
|
|
2537
|
-
var VERSION = "0.1.
|
|
2537
|
+
var VERSION = "0.1.7";
|
|
2538
2538
|
|
|
2539
2539
|
// src/server.ts
|
|
2540
2540
|
var INSTRUCTIONS = `ShipMail MCP exposes business email tools for domains, mailboxes, messages, threads, webhooks, and suppressions.
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shipmail-mcp",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"
|
|
3
|
+
"version": "0.1.7",
|
|
4
|
+
"mcpName": "io.github.jcoulaud/shipmail-mcp",
|
|
5
|
+
"description": "Official Model Context Protocol (MCP) server for Shipmail, a business email provider with REST API, webhooks, and custom-domain inboxes for AI agents.",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"bin": {
|
|
7
8
|
"shipmail-mcp": "dist/index.js"
|
|
@@ -28,6 +29,11 @@
|
|
|
28
29
|
"email-api",
|
|
29
30
|
"email-hosting",
|
|
30
31
|
"business-email",
|
|
32
|
+
"custom-domain-email",
|
|
33
|
+
"inbound-email",
|
|
34
|
+
"agent-inbox",
|
|
35
|
+
"rest-api",
|
|
36
|
+
"webhooks",
|
|
31
37
|
"ai-agent",
|
|
32
38
|
"claude",
|
|
33
39
|
"cursor"
|
package/server.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-
|
|
3
|
-
"name": "
|
|
4
|
-
"description": "
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.jcoulaud/shipmail-mcp",
|
|
4
|
+
"description": "Shipmail MCP server for AI agent custom-domain email inboxes with REST API and webhooks.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/jcoulaud/shipmail-mcp",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.7",
|
|
10
10
|
"websiteUrl": "https://shipmail.to/docs/mcp",
|
|
11
11
|
"packages": [
|
|
12
12
|
{
|
|
13
13
|
"registryType": "npm",
|
|
14
14
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
15
15
|
"identifier": "shipmail-mcp",
|
|
16
|
-
"version": "0.1.
|
|
16
|
+
"version": "0.1.7",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|
|
19
19
|
},
|