@n24q02m/better-email-mcp 1.4.7 → 1.6.0
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 +18 -10
- package/bin/cli.mjs +108 -57
- package/build/src/docs/send.md +21 -0
- package/build/src/tools/composite/send.d.ts.map +1 -1
- package/build/src/tools/composite/send.js +40 -4
- package/build/src/tools/composite/send.js.map +1 -1
- package/build/src/tools/helpers/imap-client.d.ts +11 -0
- package/build/src/tools/helpers/imap-client.d.ts.map +1 -1
- package/build/src/tools/helpers/imap-client.js +45 -0
- package/build/src/tools/helpers/imap-client.js.map +1 -1
- package/build/src/tools/helpers/smtp-client.d.ts +13 -12
- package/build/src/tools/helpers/smtp-client.d.ts.map +1 -1
- package/build/src/tools/helpers/smtp-client.js +96 -85
- package/build/src/tools/helpers/smtp-client.js.map +1 -1
- package/build/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -14,6 +14,10 @@
|
|
|
14
14
|
[](https://github.com/python-semantic-release/python-semantic-release)
|
|
15
15
|
[](https://developer.mend.io/)
|
|
16
16
|
|
|
17
|
+
<a href="https://glama.ai/mcp/servers/@n24q02m/better-email-mcp">
|
|
18
|
+
<img width="380" height="200" src="https://glama.ai/mcp/servers/@n24q02m/better-email-mcp/badge" alt="better-email-mcp MCP server" />
|
|
19
|
+
</a>
|
|
20
|
+
|
|
17
21
|
## Why "Better"?
|
|
18
22
|
|
|
19
23
|
**5 composite tools** that provide full email operations (search, read, send, reply, forward, organize) across multiple accounts using IMAP/SMTP with App Passwords.
|
|
@@ -37,7 +41,9 @@
|
|
|
37
41
|
|
|
38
42
|
Create App Passwords (NOT your regular password):
|
|
39
43
|
- **Gmail**: Enable 2FA, then <https://myaccount.google.com/apppasswords>
|
|
40
|
-
- **
|
|
44
|
+
- **Yahoo**: Enable 2FA, then <https://login.yahoo.com/account/security/app-passwords>
|
|
45
|
+
- **iCloud**: <https://appleid.apple.com> > Sign-In and Security > App-Specific Passwords
|
|
46
|
+
- **Outlook**: No longer supports app passwords. OAuth2 support planned for a future release.
|
|
41
47
|
|
|
42
48
|
### Option 1: Package Manager (Recommended)
|
|
43
49
|
|
|
@@ -149,15 +155,17 @@ EMAIL_CREDENTIALS=user@custom.com:password:imap.custom.com
|
|
|
149
155
|
|
|
150
156
|
## Supported Providers
|
|
151
157
|
|
|
152
|
-
| Provider |
|
|
153
|
-
|
|
154
|
-
| Gmail | `imap.gmail.com:993`
|
|
155
|
-
|
|
|
156
|
-
|
|
|
157
|
-
|
|
|
158
|
-
| Zoho | `imap.zoho.com:993`
|
|
159
|
-
| ProtonMail | `imap.protonmail.ch:993`
|
|
160
|
-
| Custom | Via `email:pass:imap.host` format | Configurable |
|
|
158
|
+
| Provider | Auth | IMAP / SMTP | Save-to-Sent |
|
|
159
|
+
|----------|------|-------------|-------------|
|
|
160
|
+
| Gmail | App Password | `imap.gmail.com:993` / TLS (465) | Auto (skipped) |
|
|
161
|
+
| Yahoo | App Password | `imap.mail.yahoo.com:993` / TLS (465) | Auto (skipped) |
|
|
162
|
+
| iCloud/Me.com | App-Specific Password | `imap.mail.me.com:993` / STARTTLS (587) | Auto (skipped) |
|
|
163
|
+
| Outlook/Hotmail/Live | **OAuth2 only** | `outlook.office365.com:993` / STARTTLS (587) | IMAP APPEND |
|
|
164
|
+
| Zoho | App Password | `imap.zoho.com:993` / TLS (465) | IMAP APPEND |
|
|
165
|
+
| ProtonMail | ProtonMail Bridge | `imap.protonmail.ch:993` / TLS (465) | IMAP APPEND |
|
|
166
|
+
| Custom | Via `email:pass:imap.host` format | Configurable | IMAP APPEND |
|
|
167
|
+
|
|
168
|
+
> **Note:** Outlook.com deprecated Basic Authentication. App passwords no longer work for IMAP/SMTP. OAuth2 support is planned for a future release.
|
|
161
169
|
|
|
162
170
|
---
|
|
163
171
|
|