@n24q02m/better-email-mcp 1.31.2 → 1.31.3-beta.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 +8 -5
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -77,7 +77,7 @@ mcp-name: io.github.n24q02m/better-email-mcp
77
77
  >
78
78
  > Past months saw significant churn around credential handling and the daemon-bridge auto-spawn pattern. This caused multi-process races, browser tab spam, and inconsistent setup UX across plugins. **As of v<auto>, the architecture is stable**: 2 clean modes (stdio + HTTP), no daemon-bridge layer, no auto-spawn from stdio.
79
79
  >
80
- > Apologies for the instability period. If you encountered issues with prior versions, please update to v<auto>+ and follow the current [`docs/setup-manual.md`](docs/setup-manual.md) -- most prior workarounds are no longer needed.
80
+ > Apologies for the instability period. If you encountered issues with prior versions, please update to v<auto>+ and follow the current [Setup guide](https://mcp.n24q02m.com/servers/better-email-mcp/setup/) -- most prior workarounds are no longer needed.
81
81
  >
82
82
  > **Related plugins from the same author**:
83
83
  > - [wet-mcp](https://github.com/n24q02m/wet-mcp) -- Web search + content extraction
@@ -146,8 +146,9 @@ Single multi-user mode (relay form for App-Password providers + bundled Outlook
146
146
 
147
147
  ```bash
148
148
  docker run -p 8080:8080 \
149
+ -e PORT=8080 \
149
150
  -e PUBLIC_URL=https://your-domain.com \
150
- -e DCR_SERVER_SECRET=$(openssl rand -hex 32) \
151
+ -e CREDENTIAL_SECRET=$(openssl rand -hex 32) \
151
152
  n24q02m/better-email-mcp:latest
152
153
  ```
153
154
 
@@ -175,9 +176,11 @@ In **stdio mode**, Outlook accounts use an **App Password** instead (Outlook Acc
175
176
  | `EMAIL_APP_PASSWORD` | Yes (stdio, single-account) | - | App password (Gmail/Yahoo/iCloud) or Outlook App Password |
176
177
  | `EMAIL_IMAP_HOST` | No (custom only) | - | Custom IMAP hostname when `EMAIL_PROVIDER=custom` |
177
178
  | `EMAIL_CREDENTIALS` | Alternative (multi-account) | - | Legacy `user@gmail.com:app-password` (comma-separated for multi-account) |
178
- | `PUBLIC_URL` | Yes (http) | - | Server's public URL for OAuth redirects |
179
- | `DCR_SERVER_SECRET` | Yes (http) | - | HMAC secret for stateless client registration |
180
- | `PORT` | No | `8080` | Server port (http mode) |
179
+ | `PUBLIC_URL` | No (http) | - | Server's public URL for relay / OAuth redirect links |
180
+ | `CREDENTIAL_SECRET` | No (http) | auto-generated | Secret used to encrypt the per-user credential store; if unset, a random 32-byte secret is generated and persisted to a 0600 file |
181
+ | `PORT` | No | `0` (OS-assigned) | Server port (http mode); set explicitly (e.g. `8080`) to bind a fixed port |
182
+ | `HOST` | No | - | Bind address (http mode) |
183
+ | `MCP_AUTH_DISABLE` | No (http) | - | Set to `1` to skip Bearer JWT verification when behind an external auth gateway |
181
184
  | `OUTLOOK_CLIENT_ID` | No | `d56f8c71-9f7c-43f4-9934-be29cb6e77b0` (bundled public client) | Override the bundled Azure AD public client for self-hosted Outlook OAuth2 |
182
185
  | `OUTLOOK_EMAIL` | No | - | Workaround when Microsoft device-code response omits the email field |
183
186
 
package/package.json CHANGED
@@ -19,7 +19,7 @@
19
19
  "codex",
20
20
  "opencode"
21
21
  ],
22
- "version": "1.31.2",
22
+ "version": "1.31.3-beta.1",
23
23
  "license": "MIT",
24
24
  "type": "module",
25
25
  "publishConfig": {
@@ -58,12 +58,12 @@
58
58
  ],
59
59
  "dependencies": {
60
60
  "@modelcontextprotocol/sdk": "^1.29.0",
61
- "@n24q02m/mcp-core": "1.17.1",
61
+ "@n24q02m/mcp-core": "1.17.2-beta.1",
62
62
  "html-to-text": "^10.0.0",
63
- "imapflow": "^1.3.3",
64
- "mailparser": "^3.9.8",
63
+ "imapflow": "^1.3.4",
64
+ "mailparser": "^3.9.9",
65
65
  "marked": "^17.0.6",
66
- "nodemailer": "^8.0.9",
66
+ "nodemailer": "^8.0.10",
67
67
  "sanitize-html": "^2.17.4"
68
68
  },
69
69
  "trustedDependencies": [
@@ -79,7 +79,7 @@
79
79
  "@types/sanitize-html": "^2.16.1",
80
80
  "@vitest/coverage-v8": "^4.1.7",
81
81
  "esbuild": "^0.28.0",
82
- "tsx": "^4.22.3",
82
+ "tsx": "^4.22.4",
83
83
  "typescript": "^5.9.3",
84
84
  "vitest": "^4.1.7"
85
85
  },