@marlinjai/email-mcp 1.0.0 → 1.1.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 +8 -12
- package/dist/index.js.map +2 -2
- package/dist/setup/wizard.js.map +2 -2
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -55,34 +55,30 @@ The wizard will walk you through provider selection and authentication. After ea
|
|
|
55
55
|
|
|
56
56
|
### Gmail
|
|
57
57
|
|
|
58
|
-
|
|
59
|
-
2. Create a new project (or select an existing one).
|
|
60
|
-
3. Enable the **Gmail API** under APIs & Services.
|
|
61
|
-
4. Go to **Credentials** and create an **OAuth 2.0 Client ID** (Desktop application type).
|
|
62
|
-
5. Run the setup wizard:
|
|
58
|
+
No configuration needed — the setup wizard handles everything using built-in OAuth credentials (PKCE):
|
|
63
59
|
|
|
64
60
|
```bash
|
|
65
61
|
npx @marlinjai/email-mcp setup
|
|
66
62
|
# Select "Gmail" when prompted
|
|
67
|
-
# A browser window
|
|
63
|
+
# A browser window opens for Google authorization
|
|
68
64
|
# Grant the requested permissions and return to the terminal
|
|
69
65
|
```
|
|
70
66
|
|
|
67
|
+
> **Note:** If you prefer to use your own OAuth app, create a Desktop OAuth 2.0 Client in the [Google Cloud Console](https://console.cloud.google.com/) with the Gmail API enabled.
|
|
68
|
+
|
|
71
69
|
### Outlook
|
|
72
70
|
|
|
73
|
-
|
|
74
|
-
2. Register a new application (select "Personal Microsoft accounts" for consumer Outlook).
|
|
75
|
-
3. Under **Authentication**, add a redirect URI for `http://localhost`.
|
|
76
|
-
4. Under **API permissions**, add `Mail.ReadWrite`, `Mail.Send`, and `offline_access`.
|
|
77
|
-
5. Run the setup wizard:
|
|
71
|
+
No configuration needed — the setup wizard handles everything using built-in OAuth credentials (PKCE):
|
|
78
72
|
|
|
79
73
|
```bash
|
|
80
74
|
npx @marlinjai/email-mcp setup
|
|
81
75
|
# Select "Outlook" when prompted
|
|
82
|
-
# A browser window
|
|
76
|
+
# A browser window opens for Microsoft authorization
|
|
83
77
|
# Sign in and grant the requested permissions
|
|
84
78
|
```
|
|
85
79
|
|
|
80
|
+
> **Note:** If you prefer to use your own OAuth app, register one in the [Azure Portal](https://portal.azure.com/) with `Mail.ReadWrite`, `Mail.Send`, and `offline_access` permissions.
|
|
81
|
+
|
|
86
82
|
### iCloud
|
|
87
83
|
|
|
88
84
|
1. Go to [appleid.apple.com](https://appleid.apple.com/) and sign in.
|