hypermail-mcp 0.6.1 → 0.6.2

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.
package/README.md CHANGED
@@ -3,6 +3,10 @@
3
3
  A **Model Context Protocol** server that lets an agent operate any of the user's
4
4
  inboxes through a single, unified tool surface.
5
5
 
6
+ > **v0.6.2** — Version source-of-truth fix: `version.ts` now imports directly
7
+ > from `package.json` instead of hardcoding, preventing version drift between
8
+ > the two files.
9
+ >
6
10
  > **v0.6.1** — Docker deployment (standalone Dockerfile with HEALTHCHECK),
7
11
  > email notification bug fixes (ID-based dedup, pagination cap, dynamic
8
12
  > re-scan), Node 22 base image, dropped docker-compose.
package/dist/cli.js CHANGED
@@ -3819,8 +3819,80 @@ function registerTools(server, opts) {
3819
3819
  }
3820
3820
  }
3821
3821
 
3822
+ // package.json
3823
+ var package_default = {
3824
+ name: "hypermail-mcp",
3825
+ version: "0.6.2",
3826
+ description: "Unified email MCP server \u2014 operate any inbox (Outlook now, IMAP/Gmail later) by passing an email address.",
3827
+ type: "module",
3828
+ bin: {
3829
+ "hypermail-mcp": "dist/cli.js"
3830
+ },
3831
+ main: "dist/cli.js",
3832
+ files: [
3833
+ "dist",
3834
+ "README.md",
3835
+ "LICENSE"
3836
+ ],
3837
+ scripts: {
3838
+ build: "tsup",
3839
+ dev: "tsup --watch",
3840
+ "dev:http": "tsup && node dist/cli.js --http --config hypermail-config.http.json",
3841
+ start: "node dist/cli.js",
3842
+ typecheck: "tsc --noEmit",
3843
+ test: "vitest run",
3844
+ "test:watch": "vitest",
3845
+ prepublishOnly: "pnpm build && pnpm test"
3846
+ },
3847
+ engines: {
3848
+ node: ">=20"
3849
+ },
3850
+ keywords: [
3851
+ "mcp",
3852
+ "model-context-protocol",
3853
+ "email",
3854
+ "outlook",
3855
+ "microsoft-graph",
3856
+ "imap"
3857
+ ],
3858
+ license: "MIT",
3859
+ repository: {
3860
+ type: "git",
3861
+ url: "git+https://github.com/mateotiedra/hypermail-mcp.git"
3862
+ },
3863
+ bugs: {
3864
+ url: "https://github.com/mateotiedra/hypermail-mcp/issues"
3865
+ },
3866
+ dependencies: {
3867
+ "@azure/msal-node": "^2.16.2",
3868
+ "@microsoft/microsoft-graph-client": "^3.0.7",
3869
+ "@modelcontextprotocol/sdk": "^1.0.4",
3870
+ "google-auth-library": "^9.15.1",
3871
+ googleapis: "^144.0.0",
3872
+ imapflow: "^1.3.3",
3873
+ "isomorphic-fetch": "^3.0.0",
3874
+ "js-yaml": "^4.2.0",
3875
+ marked: "^18.0.4",
3876
+ nodemailer: "^8.0.8",
3877
+ turndown: "^7.2.4",
3878
+ zod: "^4.4.3"
3879
+ },
3880
+ optionalDependencies: {
3881
+ keytar: "^7.9.0"
3882
+ },
3883
+ devDependencies: {
3884
+ "@types/isomorphic-fetch": "^0.0.39",
3885
+ "@types/js-yaml": "^4.0.9",
3886
+ "@types/node": "^22.10.2",
3887
+ "@types/nodemailer": "^8.0.0",
3888
+ tsup: "^8.3.5",
3889
+ typescript: "^5.7.2",
3890
+ vitest: "^2.1.8"
3891
+ }
3892
+ };
3893
+
3822
3894
  // src/version.ts
3823
- var VERSION = "0.4.1";
3895
+ var VERSION = package_default.version;
3824
3896
 
3825
3897
  // src/config.ts
3826
3898
  import { readFileSync } from "fs";