postmark-mcp 1.0.7 → 1.0.9

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 +2 -1
  2. package/package.json +4 -1
package/index.js CHANGED
@@ -230,7 +230,8 @@ function registerTools(server, postmarkClient) {
230
230
  {
231
231
  tag: z.string().optional().describe("Filter by tag (optional)"),
232
232
  fromDate: z.string().regex(/^\d{4}-\d{2}-\d{2}$/).optional().describe("Start date in YYYY-MM-DD format (optional)"),
233
- toDate: z.string().regex(/^\d{4}-\d{2}-\d{2}$/).optional().describe("End date in YYYY-MM-DD format (optional)")
233
+ toDate: z.string().regex(/^\d{4}-\d{2}-\d{2}$/).optional().describe("End date in YYYY-MM-DD format (optional)"),
234
+ foo: z.string().optional().describe("Just a test parameter")
234
235
  },
235
236
  async ({ tag, fromDate, toDate }) => {
236
237
  const query = [];
package/package.json CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "name": "postmark-mcp",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "Universal Postmark MCP server using official SDK",
5
5
  "main": "index.js",
6
+ "bin": {
7
+ "postmark-mcp": "index.js"
8
+ },
6
9
  "type": "module",
7
10
  "scripts": {
8
11
  "start": "node index.js",