airmail-mcp 1.0.13 → 1.0.14

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 +14 -15
  2. package/manifest.json +4 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -122,7 +122,7 @@ export AIRMAIL_MCP_TOKEN="your-token-here"
122
122
 
123
123
  To find your token: open Airmail → **Preferences → MCP** → copy the **Auth Token**.
124
124
 
125
- ## Tools (97)
125
+ ## Tools (98)
126
126
 
127
127
  ### Email (core)
128
128
  `list_accounts` · `list_folders` · `list_messages` · `get_message` · `list_inbox` · `list_starred` · `list_sent` · `list_trash` · `list_spam` · `search_messages` · `fetch_message_body` · `list_attachments` · `get_attachment` · `get_unread_counts` · `search_contacts` · `get_draft` · `delete_draft` · `get_message_thread` · `list_windows` · `export_eml`
@@ -178,20 +178,19 @@ Tools are organized into capability groups that can be enabled or disabled at ru
178
178
 
179
179
  | Group | Tools | Default |
180
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
-
181
+ | mail | read, action, compose | Always on |
182
+ | profile | user profile & behavior | On |
183
+ | folders | folder create/rename/delete | On |
184
+ | semantic | semantic search & index | On |
185
+ | calendar | calendar & reminder | On |
186
+ | contacts | address book | On |
187
+ | preferences | app preferences read/write | On |
188
+ | rules | email rules CRUD | On |
189
+ | lists | VIP & blocked sender lists | On |
190
+ | smartfolders | smart folder CRUD | On |
191
+ | signatures | email signature CRUD | On |
192
+ | aliases | email alias CRUD | On |
193
+ | accountsettings | per-account settings & vacation | On |
195
194
  To enable all groups, ask the AI to call `manage_capabilities` with `enable: ["preferences", "rules", "lists", "smartfolders", "signatures", "aliases", "accountsettings"]`.
196
195
 
197
196
  ## Deep links
package/manifest.json CHANGED
@@ -370,6 +370,10 @@
370
370
  "name": "semantic_index_status",
371
371
  "description": "Check/trigger semantic index."
372
372
  },
373
+ {
374
+ "name": "get_navigation_link",
375
+ "description": "Get an airmail:// deep link to navigate the user to a specific part of Airmail."
376
+ },
373
377
  {
374
378
  "name": "list_rules",
375
379
  "description": "List all email rules with name, guid, enabled, conditions/actions summary, direction."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "airmail-mcp",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "mcpName": "io.github.airmail/airmail-mcp",
5
5
  "description": "Manage emails, calendars, contacts, and more from Claude using Airmail's MCP server.",
6
6
  "main": "dist/index.js",