fastmail-mcp-server 0.4.0 → 0.4.1

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.
Files changed (2) hide show
  1. package/README.md +13 -2
  2. package/package.json +4 -1
package/README.md CHANGED
@@ -66,6 +66,16 @@ Token format: `fmu1-xxxxxxxx-xxxxxxxxxxxx...`
66
66
 
67
67
  ### 2. Configure Claude Desktop
68
68
 
69
+ Install the server globally:
70
+
71
+ ```bash
72
+ # Via mise (recommended)
73
+ mise use -g npm:fastmail-mcp-server
74
+
75
+ # Or via npm
76
+ npm install -g fastmail-mcp-server
77
+ ```
78
+
69
79
  Open the Claude Desktop config file:
70
80
 
71
81
  ```bash
@@ -83,8 +93,7 @@ Add the fastmail server config:
83
93
  {
84
94
  "mcpServers": {
85
95
  "fastmail": {
86
- "command": "bunx",
87
- "args": ["-y", "fastmail-mcp-server"],
96
+ "command": "fastmail-mcp-server",
88
97
  "env": {
89
98
  "FASTMAIL_API_TOKEN": "fmu1-your-token-here"
90
99
  }
@@ -93,6 +102,8 @@ Add the fastmail server config:
93
102
  }
94
103
  ```
95
104
 
105
+ > **Note:** If Claude Desktop can't find the command, use the full path from `which fastmail-mcp-server`
106
+
96
107
  ### 3. Restart Claude Desktop
97
108
 
98
109
  Quit Claude Desktop completely (Cmd+Q) and reopen it. The Fastmail tools should now appear.
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "fastmail-mcp-server",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "MCP server for Fastmail - read, search, and send emails via Claude",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
7
+ "bin": {
8
+ "fastmail-mcp-server": "src/index.ts"
9
+ },
7
10
  "files": [
8
11
  "src/**/*"
9
12
  ],