shipmail-mcp 0.7.2 → 0.7.13
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/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/.plugin/plugin.json +1 -1
- package/README.md +30 -19
- package/dist/capabilities.d.ts +16 -4
- package/dist/capabilities.js +52 -17
- package/dist/index.js +1606 -224
- package/dist/server.d.ts +4 -1
- package/dist/server.js +1615 -224
- package/package.json +2 -2
- package/server.json +2 -2
- package/skills/shipmail/SKILL.md +2 -0
- package/smithery.yaml +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shipmail-mcp",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.13",
|
|
4
4
|
"mcpName": "io.github.shipmail-to/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",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@modelcontextprotocol/server": "2.0.0",
|
|
70
|
-
"shipmail": "0.4.
|
|
70
|
+
"shipmail": "0.4.23",
|
|
71
71
|
"zod": "4.4.3"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
package/server.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"url": "https://github.com/shipmail-to/shipmail-mcp",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.7.
|
|
9
|
+
"version": "0.7.13",
|
|
10
10
|
"websiteUrl": "https://shipmail.to/docs/mcp",
|
|
11
11
|
"remotes": [
|
|
12
12
|
{
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"registryType": "npm",
|
|
28
28
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
29
29
|
"identifier": "shipmail-mcp",
|
|
30
|
-
"version": "0.7.
|
|
30
|
+
"version": "0.7.13",
|
|
31
31
|
"transport": {
|
|
32
32
|
"type": "stdio"
|
|
33
33
|
},
|
package/skills/shipmail/SKILL.md
CHANGED
|
@@ -59,6 +59,8 @@ Use availability and event-listing tools for read-only questions. Before creatin
|
|
|
59
59
|
|
|
60
60
|
Draft and preview before any publication or test send. Confirm the sender identity, audience, exclusions, subject, final content, and delivery timing. Treat webhook destinations and signing secrets as security-sensitive; verify the target URL and event set before creation or update.
|
|
61
61
|
|
|
62
|
+
For a hosted conversation or library image or video, use `shipmail_upload_newsletter_asset_with_file`. For a user-approved local media file, compute its exact byte size and SHA-256 digest, call `shipmail_prepare_newsletter_asset_upload`, PUT the unmodified bytes with the returned upload headers, upload a generated JPEG poster for video, and POST an empty body to the completion URL. Use the returned newsletter asset URL in the draft. Never put base64 media bytes in MCP arguments or print the prepared URLs.
|
|
63
|
+
|
|
62
64
|
## Connection guidance
|
|
63
65
|
|
|
64
66
|
If the client asks the user to connect Shipmail:
|
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.7.
|
|
3
|
+
version: 0.7.13
|
|
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/shipmail-to/shipmail-mcp
|