postmark-mcp 1.0.13 → 1.0.14

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/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -162,7 +162,7 @@ function registerTools(server, postmarkClient) {
162
162
  from: z.string().optional().describe("Sender email address (optional, uses default if not provided)"),
163
163
  tag: z.string().optional().describe("Optional tag for categorization"),
164
164
  inReplyTo: z.string().optional().describe("SMTP Message-ID this email replies to (e.g. <id@host>)"),
165
- attachmentUrls: z.array(z.string().url()).optional().describe("Array of attachment URLs (optional)")
165
+ attachmentUrls: z.array(z.string()).optional().describe("Array of attachment URLs (optional)")
166
166
  },
167
167
  async ({ to, subject, textBody, htmlBody, from, tag, inReplyTo, attachmentUrls }) => {
168
168
  const emailData = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "postmark-mcp",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "Universal Postmark MCP server using official SDK",
5
5
  "main": "index.js",
6
6
  "bin": {