shipmail-mcp 0.3.0 → 0.3.1
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/dist/index.js +17 -6
- package/package.json +2 -2
- package/server.json +2 -2
- package/smithery.yaml +1 -1
package/dist/index.js
CHANGED
|
@@ -932,11 +932,22 @@ var idempotentByIdInputSchema = z.object({
|
|
|
932
932
|
});
|
|
933
933
|
var createMailboxImportInputSchema = z.object({
|
|
934
934
|
id: idSchema,
|
|
935
|
-
provider: z.enum([
|
|
935
|
+
provider: z.enum([
|
|
936
|
+
"gmail",
|
|
937
|
+
"yahoo",
|
|
938
|
+
"aol",
|
|
939
|
+
"icloud",
|
|
940
|
+
"fastmail",
|
|
941
|
+
"zoho",
|
|
942
|
+
"infomaniak",
|
|
943
|
+
"ovh",
|
|
944
|
+
"gandi",
|
|
945
|
+
"imap"
|
|
946
|
+
]).describe("Source provider. Outlook imports require the dashboard's Microsoft sign-in."),
|
|
936
947
|
email: z.string().min(3).max(320).describe("Address of the source mailbox"),
|
|
937
|
-
password: z.string().min(1).max(1024).describe("App password
|
|
938
|
-
host: z.string().min(1).max(253).optional().describe("IMAP server
|
|
939
|
-
port: z.number().int().min(1).max(65535).optional().describe("IMAP port
|
|
948
|
+
password: z.string().min(1).max(1024).describe("App password, device password, or IMAP password for the source mailbox"),
|
|
949
|
+
host: z.string().min(1).max(253).optional().describe("IMAP server. Required for 'imap'; optional OVHcloud server override for 'ovh'."),
|
|
950
|
+
port: z.number().int().min(1).max(65535).optional().describe("IMAP port. Used for 'imap' and optional OVHcloud overrides."),
|
|
940
951
|
range: z.enum(["all", "12m", "3m", "1m"]).optional().describe("How far back to import. Defaults to all."),
|
|
941
952
|
include_spam: z.boolean().optional().describe("Also import the source spam folder"),
|
|
942
953
|
include_trash: z.boolean().optional().describe("Also import the source trash folder")
|
|
@@ -3062,7 +3073,7 @@ function registerTools(server, client, selectedTools) {
|
|
|
3062
3073
|
"shipmail_create_mailbox_import",
|
|
3063
3074
|
{
|
|
3064
3075
|
title: "Import a Mailbox",
|
|
3065
|
-
description: "Start importing mail from another provider into a shipmail mailbox over IMAP. Use an app password for the source account. Outlook sources require the dashboard's Sign in with Microsoft and cannot be started here. The import runs in the background; poll shipmail_get_mailbox_import for progress.",
|
|
3076
|
+
description: "Start importing mail from another provider into a shipmail mailbox over IMAP. Use an app or device password for the source account. Outlook sources require the dashboard's Sign in with Microsoft and cannot be started here. The import runs in the background; poll shipmail_get_mailbox_import for progress.",
|
|
3066
3077
|
inputSchema: createMailboxImportInputSchema,
|
|
3067
3078
|
outputSchema: importOutputSchema,
|
|
3068
3079
|
annotations: {
|
|
@@ -5029,7 +5040,7 @@ function registerTools(server, client, selectedTools) {
|
|
|
5029
5040
|
}
|
|
5030
5041
|
|
|
5031
5042
|
// src/version.ts
|
|
5032
|
-
var VERSION = "0.3.
|
|
5043
|
+
var VERSION = "0.3.1";
|
|
5033
5044
|
|
|
5034
5045
|
// src/server.ts
|
|
5035
5046
|
var INSTRUCTIONS = `ShipMail MCP exposes business email tools for domains, mailboxes, messages, threads, webhooks, and suppressions.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shipmail-mcp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
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.1",
|
|
63
63
|
"zod": "4.4.3"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
package/server.json
CHANGED
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
"url": "https://github.com/jcoulaud/shipmail-mcp",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.3.
|
|
9
|
+
"version": "0.3.1",
|
|
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.3.
|
|
16
|
+
"version": "0.3.1",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|
|
19
19
|
},
|
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.1
|
|
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
|