@assistantmail/assistantmail-mcp 1.2.1 → 1.2.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 +16 -1
- package/package.json +12 -3
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
MCP server for [AssistantMail](https://assistant-mail.ai) — lets AI agents send and receive email through a managed mailbox.
|
|
4
4
|
|
|
5
|
-
[Website](https://assistant-mail.ai) · [Privacy Policy](https://assistant-mail.ai/privacy.html) · [Terms of Use](https://assistant-mail.ai/terms.html)
|
|
5
|
+
[Website](https://assistant-mail.ai) · [Privacy Policy](https://assistant-mail.ai/privacy.html) · [Terms of Use](https://assistant-mail.ai/terms.html) · [Contributing](./CONTRIBUTING.md)
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -10,6 +10,21 @@ MCP server for [AssistantMail](https://assistant-mail.ai) — lets AI agents sen
|
|
|
10
10
|
npx @assistantmail/assistantmail-mcp
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
+
Requires Node.js 24 or newer.
|
|
14
|
+
|
|
15
|
+
## For npm users
|
|
16
|
+
|
|
17
|
+
If you are installing from npm and want the shortest setup path:
|
|
18
|
+
|
|
19
|
+
1. Install/run with:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npx -y @assistantmail/assistantmail-mcp
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
2. Set `ASSISTANT_MAIL_API_KEY` in your MCP client environment.
|
|
26
|
+
3. Call `assistantmail_list_mailboxes` first to get your `mailboxId`.
|
|
27
|
+
|
|
13
28
|
### Claude Desktop
|
|
14
29
|
|
|
15
30
|
```json
|
package/package.json
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@assistantmail/assistantmail-mcp",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "AssistantMail MCP server",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/AssistantMail/assistantmail-mcp.git"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://assistant-mail.ai",
|
|
10
|
+
"bug": {
|
|
11
|
+
"url": "https://github.com/AssistantMail/assistantmail-mcp/issues"
|
|
12
|
+
},
|
|
5
13
|
"type": "module",
|
|
6
14
|
"bin": {
|
|
7
15
|
"assistantmail-mcp": "src/index.js"
|
|
@@ -13,6 +21,7 @@
|
|
|
13
21
|
],
|
|
14
22
|
"scripts": {
|
|
15
23
|
"build": "node --check src/index.js",
|
|
24
|
+
"lint": "node --check src/index.js",
|
|
16
25
|
"start": "node src/index.js"
|
|
17
26
|
},
|
|
18
27
|
"keywords": [
|
|
@@ -22,13 +31,13 @@
|
|
|
22
31
|
"openai",
|
|
23
32
|
"OpenClaw"
|
|
24
33
|
],
|
|
25
|
-
"author": "
|
|
34
|
+
"author": "AssistantMail",
|
|
26
35
|
"license": "MIT",
|
|
27
36
|
"publishConfig": {
|
|
28
37
|
"access": "public"
|
|
29
38
|
},
|
|
30
39
|
"engines": {
|
|
31
|
-
"node": ">=
|
|
40
|
+
"node": ">=24"
|
|
32
41
|
},
|
|
33
42
|
"dependencies": {
|
|
34
43
|
"@modelcontextprotocol/sdk": "^1.29.0",
|