@helmdesk/mcp 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -51,12 +51,13 @@ HELMDESK_API_KEY=sk_live_xxx npx @helmdesk/mcp
51
51
  | `add_ticket_tag` | Add a tag (label) to a ticket for triage/categorization |
52
52
  | `remove_ticket_tag` | Remove a tag from a ticket |
53
53
  | `send_email` | Send a transactional email using a template |
54
+ | `send_email_batch` | Send up to 100 transactional emails in one request (Pro plan or higher) |
54
55
  | `preview_email` | Preview a rendered email template |
55
56
  | `get_template_schema` | Get the variable schema for an email template |
56
57
  | `search_articles` | Search the knowledge base |
57
58
  | `create_article` | Create a knowledge-base article (draft or published) |
58
59
 
59
- 12 tools in total — `tickets:write` is required for ticket mutations and `add_ticket_tag`/`remove_ticket_tag`, `articles:write` for `create_article`. A key with empty scopes has full access.
60
+ 13 tools in total — `tickets:write` is required for ticket mutations and `add_ticket_tag`/`remove_ticket_tag`, `emails:send` for `send_email`/`send_email_batch` (batch also needs the Pro plan or higher), `articles:write` for `create_article`. A key with empty scopes has full access.
60
61
 
61
62
  ## Available Resources
62
63
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@helmdesk/mcp",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "MCP server for Helmdesk — let AI agents manage tickets, send emails, and search your knowledge base",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -21,7 +21,7 @@
21
21
  "dependencies": {
22
22
  "@modelcontextprotocol/sdk": "^1.12.1",
23
23
  "zod": "^3.25.23",
24
- "@helmdesk/sdk": "0.4.0"
24
+ "@helmdesk/sdk": "0.4.1"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/node": "^20",