shipmail-mcp 0.1.3 → 0.1.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +2 -2
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.4";
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.4",
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": {
@@ -51,7 +51,7 @@
51
51
  },
52
52
  "dependencies": {
53
53
  "@modelcontextprotocol/sdk": "1.29.0",
54
- "shipmail": "0.1.22",
54
+ "shipmail": "0.1.23",
55
55
  "zod": "4.3.6"
56
56
  },
57
57
  "devDependencies": {