shipmail-mcp 0.3.2 → 0.3.4
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 +51 -7
- package/dist/index.js +411 -21
- package/dist/server.d.ts +12 -0
- package/dist/server.js +5478 -0
- package/package.json +2 -2
- package/server.json +16 -2
- package/smithery.yaml +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shipmail-mcp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"mcpName": "io.github.jcoulaud/shipmail-mcp",
|
|
5
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.",
|
|
6
6
|
"type": "module",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@modelcontextprotocol/sdk": "1.29.0",
|
|
62
|
-
"shipmail": "0.2.
|
|
62
|
+
"shipmail": "0.2.3",
|
|
63
63
|
"zod": "4.4.3"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
package/server.json
CHANGED
|
@@ -6,14 +6,28 @@
|
|
|
6
6
|
"url": "https://github.com/jcoulaud/shipmail-mcp",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.3.
|
|
9
|
+
"version": "0.3.4",
|
|
10
10
|
"websiteUrl": "https://shipmail.to/docs/mcp",
|
|
11
|
+
"remotes": [
|
|
12
|
+
{
|
|
13
|
+
"type": "streamable-http",
|
|
14
|
+
"url": "https://shipmail.to/api/mcp",
|
|
15
|
+
"headers": [
|
|
16
|
+
{
|
|
17
|
+
"name": "Authorization",
|
|
18
|
+
"description": "Bearer <Shipmail API key> (sm_live_...). Create one at https://shipmail.to/docs/quick-start.",
|
|
19
|
+
"isRequired": true,
|
|
20
|
+
"isSecret": true
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
],
|
|
11
25
|
"packages": [
|
|
12
26
|
{
|
|
13
27
|
"registryType": "npm",
|
|
14
28
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
15
29
|
"identifier": "shipmail-mcp",
|
|
16
|
-
"version": "0.3.
|
|
30
|
+
"version": "0.3.4",
|
|
17
31
|
"transport": {
|
|
18
32
|
"type": "stdio"
|
|
19
33
|
},
|
package/smithery.yaml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Smithery configuration file: https://smithery.ai/docs/build/project-config/smithery-yaml
|
|
2
2
|
name: shipmail-mcp
|
|
3
|
-
version: 0.3.
|
|
3
|
+
version: 0.3.4
|
|
4
4
|
description: Official Shipmail MCP server for AI-agent custom-domain business email inboxes with REST API and webhooks.
|
|
5
5
|
author: ShipMail
|
|
6
6
|
repository: https://github.com/jcoulaud/shipmail-mcp
|