airmail-mcp 1.0.12 → 1.0.13
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 +39 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -172,6 +172,45 @@ To find your token: open Airmail → **Preferences → MCP** → copy the **Auth
|
|
|
172
172
|
### Meta
|
|
173
173
|
`manage_capabilities` — enable/disable tool groups to reduce context usage
|
|
174
174
|
|
|
175
|
+
## Tool groups
|
|
176
|
+
|
|
177
|
+
Tools are organized into capability groups that can be enabled or disabled at runtime via `manage_capabilities`. This reduces context usage by hiding tools you don't need.
|
|
178
|
+
|
|
179
|
+
| Group | Tools | Default |
|
|
180
|
+
|-------|-------|---------|
|
|
181
|
+
| mail | Email read, actions, compose | Always on |
|
|
182
|
+
| profile | User profile, triage, behavior stats | On |
|
|
183
|
+
| folders | Folder CRUD | On |
|
|
184
|
+
| semantic | Semantic search, index status | On |
|
|
185
|
+
| calendar | Calendar events, reminders | On |
|
|
186
|
+
| contacts | Address book | On |
|
|
187
|
+
| preferences | App preferences | On |
|
|
188
|
+
| rules | Email rules | On |
|
|
189
|
+
| lists | VIP & blocked senders | On |
|
|
190
|
+
| smartfolders | Smart folder CRUD | On |
|
|
191
|
+
| signatures | Email signatures | On |
|
|
192
|
+
| aliases | Email aliases | On |
|
|
193
|
+
| accountsettings | Per-account settings, vacation | On |
|
|
194
|
+
|
|
195
|
+
To enable all groups, ask the AI to call `manage_capabilities` with `enable: ["preferences", "rules", "lists", "smartfolders", "signatures", "aliases", "accountsettings"]`.
|
|
196
|
+
|
|
197
|
+
## Deep links
|
|
198
|
+
|
|
199
|
+
MCP tool responses include `airmail://` deep links that open Airmail directly to the relevant content.
|
|
200
|
+
|
|
201
|
+
| Command | URL | Description |
|
|
202
|
+
|---------|-----|-------------|
|
|
203
|
+
| `message` | `airmail://message?mail=...&messageid=...` | Select message in main window |
|
|
204
|
+
| `open` | `airmail://open?mail=...&messageid=...` | Open message in reader window |
|
|
205
|
+
| `compose` | `airmail://compose?to=...&subject=...` | Open composer with pre-filled content |
|
|
206
|
+
| `reply` | `airmail://reply?mail=...&messageid=...` | Reply to a message |
|
|
207
|
+
| `draft` | `airmail://draft?mail=...&messageid=...` | Open draft in composer |
|
|
208
|
+
| `archive` | `airmail://archive?mail=...&messageid=...` | Archive a message |
|
|
209
|
+
| `delete` | `airmail://delete?mail=...&messageid=...` | Move message to trash |
|
|
210
|
+
| `view` | `airmail://view?mail=...&folder=...` | Navigate to account/folder |
|
|
211
|
+
| `attachment` | `airmail://attachment?mail=...&messageid=...&index=0` | Open an attachment |
|
|
212
|
+
| `settings` | `airmail://settings?pref=mcp_server` | Open Preferences pane |
|
|
213
|
+
|
|
175
214
|
## How it works
|
|
176
215
|
|
|
177
216
|
```
|
package/package.json
CHANGED