shipmail-mcp 0.1.3 → 0.1.5

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 CHANGED
@@ -4,8 +4,10 @@
4
4
  [![npm downloads](https://img.shields.io/npm/dm/shipmail-mcp.svg)](https://www.npmjs.com/package/shipmail-mcp)
5
5
  [![node](https://img.shields.io/node/v/shipmail-mcp.svg)](https://www.npmjs.com/package/shipmail-mcp)
6
6
  [![license](https://img.shields.io/npm/l/shipmail-mcp.svg)](./LICENSE)
7
+ [![source](https://img.shields.io/badge/source-GitHub-black.svg)](https://github.com/jcoulaud/shipmail-mcp)
7
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.
10
+ The public source repository is [jcoulaud/shipmail-mcp](https://github.com/jcoulaud/shipmail-mcp), which is also the npm package metadata target.
9
11
 
10
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.
11
13
 
@@ -237,7 +239,10 @@ URLs must be public https. Localhost, RFC1918, `.local`, and `.internal` are blo
237
239
 
238
240
  ## Development
239
241
 
240
- Run the server locally against the workspace SDK:
242
+ For public source, tests, and issue tracking, use the standalone repository:
243
+ [github.com/jcoulaud/shipmail-mcp](https://github.com/jcoulaud/shipmail-mcp).
244
+
245
+ Run the server locally from this monorepo against the workspace SDK:
241
246
 
242
247
  ```bash
243
248
  cd packages/shipmail-mcp
@@ -269,4 +274,5 @@ should produce a package release.
269
274
  - [`shipmail` SDK on npm](https://www.npmjs.com/package/shipmail)
270
275
  - [TypeScript SDK docs](https://shipmail.to/docs/sdks/typescript)
271
276
  - [Model Context Protocol](https://modelcontextprotocol.io)
272
- - [Issues](https://github.com/jcoulaud/ShipMail/issues)
277
+ - [Source repository](https://github.com/jcoulaud/shipmail-mcp)
278
+ - [Issues](https://github.com/jcoulaud/shipmail-mcp/issues)
package/dist/index.js CHANGED
@@ -424,7 +424,7 @@ var inboxMessagesSchema = z.object({
424
424
  object: z.literal("inbox_messages"),
425
425
  mailbox_id: z.string(),
426
426
  address: z.string(),
427
- data: z.array(inboxMessageSchema),
427
+ data: z.array(inboxFullMessageSchema),
428
428
  pagination: z.object({
429
429
  position: z.number(),
430
430
  limit: z.number(),
@@ -2534,7 +2534,7 @@ function registerTools(server, client, selectedTools) {
2534
2534
  }
2535
2535
 
2536
2536
  // src/version.ts
2537
- var VERSION = "0.1.3";
2537
+ var VERSION = "0.1.5";
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,6 +1,6 @@
1
1
  {
2
2
  "name": "shipmail-mcp",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "Official Model Context Protocol (MCP) server for Shipmail. Manage business email (domains, mailboxes, messages, threads, webhooks, suppressions) from Claude, Cursor, and other MCP agents.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -36,12 +36,11 @@
36
36
  "license": "MIT",
37
37
  "repository": {
38
38
  "type": "git",
39
- "url": "git+https://github.com/jcoulaud/ShipMail.git",
40
- "directory": "packages/shipmail-mcp"
39
+ "url": "git+https://github.com/jcoulaud/shipmail-mcp.git"
41
40
  },
42
41
  "homepage": "https://shipmail.to/docs/mcp",
43
42
  "bugs": {
44
- "url": "https://github.com/jcoulaud/ShipMail/issues"
43
+ "url": "https://github.com/jcoulaud/shipmail-mcp/issues"
45
44
  },
46
45
  "engines": {
47
46
  "node": ">=20"
@@ -51,7 +50,7 @@
51
50
  },
52
51
  "dependencies": {
53
52
  "@modelcontextprotocol/sdk": "1.29.0",
54
- "shipmail": "0.1.22",
53
+ "shipmail": "0.1.23",
55
54
  "zod": "4.3.6"
56
55
  },
57
56
  "devDependencies": {
package/server.json CHANGED
@@ -3,18 +3,17 @@
3
3
  "name": "to.shipmail/mcp",
4
4
  "description": "Manage Shipmail business email from an AI agent: domains, mailboxes, messages, threads, webhooks, and suppressions.",
5
5
  "repository": {
6
- "url": "https://github.com/jcoulaud/ShipMail",
7
- "source": "github",
8
- "subfolder": "packages/shipmail-mcp"
6
+ "url": "https://github.com/jcoulaud/shipmail-mcp",
7
+ "source": "github"
9
8
  },
10
- "version": "0.1.2",
9
+ "version": "0.1.4",
11
10
  "websiteUrl": "https://shipmail.to/docs/mcp",
12
11
  "packages": [
13
12
  {
14
13
  "registryType": "npm",
15
14
  "registryBaseUrl": "https://registry.npmjs.org",
16
15
  "identifier": "shipmail-mcp",
17
- "version": "0.1.2",
16
+ "version": "0.1.4",
18
17
  "transport": {
19
18
  "type": "stdio"
20
19
  },