fastmail-mcp-server 0.2.1 → 0.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 CHANGED
@@ -16,10 +16,10 @@ MCP server for Fastmail. Read, search, organize, and send emails through Claude
16
16
  | Feature | radiosilence | @jahfer | willmeyers |
17
17
  | --------------------------------- | :----------: | :-----: | :---------: |
18
18
  | Read emails | ✅ | ✅ | ✅ |
19
- | Search emails | ✅ | | |
20
- | Send emails | ✅ | ❌ | |
19
+ | Search emails | ✅ | | |
20
+ | Send emails | ✅ | ❌ | |
21
21
  | Reply to threads | ✅ | ❌ | ❌ |
22
- | CC/BCC support | ✅ | ❌ | |
22
+ | CC/BCC support | ✅ | ❌ | |
23
23
  | Safe send (preview→confirm) | ✅ | ❌ | ❌ |
24
24
  | Move/organize emails | ✅ | ❌ | ❌ |
25
25
  | Mark as spam | ✅ | ❌ | ❌ |
@@ -30,8 +30,6 @@ MCP server for Fastmail. Read, search, organize, and send emails through Claude
30
30
  | Bun/TypeScript | ✅ | ✅ | ❌ (Python) |
31
31
  | Actively maintained | ✅ | ❓ | ❓ |
32
32
 
33
- ❓ = undocumented/unclear
34
-
35
33
  ## Prerequisites
36
34
 
37
35
  Requires [Bun](https://bun.sh) runtime:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fastmail-mcp-server",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "MCP server for Fastmail - read, search, and send emails via Claude",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
package/src/index.ts CHANGED
@@ -24,7 +24,7 @@ import type { Email, EmailAddress, Mailbox } from "./jmap/types.js";
24
24
 
25
25
  const server = new McpServer({
26
26
  name: "fastmail",
27
- version: "0.2.1",
27
+ version: "0.2.2",
28
28
  });
29
29
 
30
30
  // ============ Formatters ============