hypermail-mcp 0.4.1 → 0.4.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 +10 -6
- package/dist/cli.js +1871 -292
- package/dist/cli.js.map +1 -1
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -9,8 +9,8 @@ Microsoft account, or (soon) a personal IMAP mailbox — it just calls
|
|
|
9
9
|
address as the `account` argument. The server routes to the right backend.
|
|
10
10
|
|
|
11
11
|
**v1 status:** Outlook / Microsoft 365 (personal + work) fully supported via
|
|
12
|
-
Microsoft Graph. IMAP
|
|
13
|
-
|
|
12
|
+
Microsoft Graph. IMAP (any IMAP server) supported via `imapflow` + `nodemailer`.
|
|
13
|
+
Gmail supported via Google OAuth device-code flow.
|
|
14
14
|
|
|
15
15
|
## Why
|
|
16
16
|
|
|
@@ -152,10 +152,9 @@ account store.
|
|
|
152
152
|
|
|
153
153
|
## Roadmap
|
|
154
154
|
|
|
155
|
-
- IMAP provider (interface already in place at `src/providers/imap/index.ts`)
|
|
156
|
-
— `imapflow` + `nodemailer`, password/app-password stored encrypted.
|
|
157
|
-
- Gmail provider via Google OAuth.
|
|
158
155
|
- Threading / conversations.
|
|
156
|
+
- Calendar integration.
|
|
157
|
+
- Webhook / push notifications for new mail.
|
|
159
158
|
|
|
160
159
|
## Project layout
|
|
161
160
|
|
|
@@ -172,7 +171,12 @@ src/
|
|
|
172
171
|
auth.ts # msal-node device-code flow
|
|
173
172
|
client.ts # @microsoft/microsoft-graph-client factory
|
|
174
173
|
index.ts # OutlookProvider implementation
|
|
175
|
-
imap/index.ts #
|
|
174
|
+
imap/index.ts # IMAP provider (imapflow + nodemailer)
|
|
175
|
+
gmail/
|
|
176
|
+
auth.ts # Google OAuth device-code flow
|
|
177
|
+
client.ts # Gmail API (googleapis)
|
|
178
|
+
index.ts # GmailProvider implementation
|
|
179
|
+
shared/ # Shared utilities across providers
|
|
176
180
|
tools/index.ts # MCP tool registrations
|
|
177
181
|
```
|
|
178
182
|
|