apple-mail-mcp 2.9.0 → 2.10.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.
Files changed (3) hide show
  1. package/README.md +17 -2
  2. package/build/index.js +344 -176
  3. package/package.json +2 -6
package/README.md CHANGED
@@ -78,9 +78,24 @@ The Codex package registers the same `apple-mail` MCP server through `npx -y app
78
78
 
79
79
  ### Other Hosts (Hermes, Antigravity)
80
80
 
81
- Configuration for two more hosts is included — each registers the same `apple-mail` MCP server (`npx -y apple-mail-mcp`):
81
+ Two more hosts can run the same `apple-mail` MCP server (`npx -y apple-mail-mcp`):
82
82
 
83
- - **[Hermes Agent](https://hermes-agent.nousresearch.com/)** (NousResearch) — Hermes has no plugin/marketplace drop-in. Add the server with `hermes mcp add apple-mail --command npx --args -y apple-mail-mcp`, or merge [`.hermes-plugin/config.yaml`](https://github.com/sweetrb/apple-mail-mcp/blob/main/.hermes-plugin/config.yaml) into `~/.hermes/config.yaml`. Details: [`.hermes-plugin/README.md`](https://github.com/sweetrb/apple-mail-mcp/blob/main/.hermes-plugin/README.md).
83
+ - **[Hermes Agent](https://hermes-agent.nousresearch.com/)** (NousResearch) — Hermes has no plugin/marketplace drop-in, so there is nothing in this repo to install from. Register the server with the CLI:
84
+
85
+ ```bash
86
+ hermes mcp add apple-mail --command npx --args -y apple-mail-mcp
87
+ ```
88
+
89
+ Or add it to `~/.hermes/config.yaml` by hand:
90
+
91
+ ```yaml
92
+ mcp_servers:
93
+ apple-mail:
94
+ command: npx
95
+ args: ["-y", "apple-mail-mcp"]
96
+ ```
97
+
98
+ Restart your Hermes session afterward so the tools load.
84
99
  - **[Antigravity](https://antigravity.google/)** (Google) — add the server entry from [`.antigravity-plugin/mcp_config.json`](https://github.com/sweetrb/apple-mail-mcp/blob/main/.antigravity-plugin/mcp_config.json) to `~/.gemini/config/mcp_config.json` (or via Antigravity's MCP settings).
85
100
 
86
101
  ### Manual Installation