airmail-mcp 1.0.21 → 1.0.23
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 +5 -1
- package/manifest.json +14 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -175,7 +175,7 @@ On first use, the bridge asks Airmail to pair this MCP client. Airmail shows an
|
|
|
175
175
|
|
|
176
176
|
Airmail MCP does not use a global auth token. Access is pairing-only and can be revoked per client in Airmail's MCP Permissions tab.
|
|
177
177
|
|
|
178
|
-
## Tools (
|
|
178
|
+
## Tools (102)
|
|
179
179
|
|
|
180
180
|
### Email (core)
|
|
181
181
|
`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`
|
|
@@ -222,6 +222,9 @@ Airmail MCP does not use a global auth token. Access is pairing-only and can be
|
|
|
222
222
|
### Preferences
|
|
223
223
|
`get_preferences` · `set_preferences`
|
|
224
224
|
|
|
225
|
+
### Documentation
|
|
226
|
+
`list_user_guides` · `get_user_guide`
|
|
227
|
+
|
|
225
228
|
### Meta
|
|
226
229
|
`manage_capabilities` — enable/disable tool groups to reduce context usage
|
|
227
230
|
|
|
@@ -244,6 +247,7 @@ Tools are organized into capability groups that can be enabled or disabled at ru
|
|
|
244
247
|
| signatures | email signature CRUD | On |
|
|
245
248
|
| aliases | email alias CRUD | On |
|
|
246
249
|
| accountsettings | per-account settings & vacation | On |
|
|
250
|
+
| documentation | built-in user guides (read-only) | On |
|
|
247
251
|
To enable all groups, ask the AI to call `manage_capabilities` with `enable: ["preferences", "rules", "lists", "smartfolders", "signatures", "aliases", "accountsettings"]`.
|
|
248
252
|
|
|
249
253
|
## Deep links
|
package/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": "0.3",
|
|
3
3
|
"name": "airmail-mcp",
|
|
4
4
|
"display_name": "Airmail",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.23",
|
|
6
6
|
"description": "Manage emails, calendars, contacts, and more from Claude using Airmail's MCP server.",
|
|
7
7
|
"long_description": "Airmail MCP connects Claude to the Airmail email client for macOS. Read, search, compose, and organize emails. Manage calendars and reminders. Search contacts. The bridge connects locally to Airmail on your Mac. Data retrieved by AI tools is processed by your chosen AI provider.",
|
|
8
8
|
"author": {
|
|
@@ -309,23 +309,19 @@
|
|
|
309
309
|
},
|
|
310
310
|
{
|
|
311
311
|
"name": "list_starred",
|
|
312
|
-
"description": "List starred/flagged messages."
|
|
312
|
+
"description": "List starred/flagged messages (date desc)."
|
|
313
313
|
},
|
|
314
314
|
{
|
|
315
315
|
"name": "list_sent",
|
|
316
|
-
"description": "List sent messages."
|
|
316
|
+
"description": "List sent messages (date desc)."
|
|
317
317
|
},
|
|
318
318
|
{
|
|
319
319
|
"name": "list_trash",
|
|
320
|
-
"description": "List trash messages."
|
|
320
|
+
"description": "List trash messages (date desc)."
|
|
321
321
|
},
|
|
322
322
|
{
|
|
323
323
|
"name": "list_spam",
|
|
324
|
-
"description": "List spam/junk messages."
|
|
325
|
-
},
|
|
326
|
-
{
|
|
327
|
-
"name": "search_messages",
|
|
328
|
-
"description": "Search emails with hybrid FTS + semantic engine."
|
|
324
|
+
"description": "List spam/junk messages (date desc)."
|
|
329
325
|
},
|
|
330
326
|
{
|
|
331
327
|
"name": "fetch_message_body",
|
|
@@ -357,7 +353,7 @@
|
|
|
357
353
|
},
|
|
358
354
|
{
|
|
359
355
|
"name": "get_attachment",
|
|
360
|
-
"description": "Get
|
|
356
|
+
"description": "Get a specific attachment."
|
|
361
357
|
},
|
|
362
358
|
{
|
|
363
359
|
"name": "list_windows",
|
|
@@ -438,6 +434,14 @@
|
|
|
438
434
|
{
|
|
439
435
|
"name": "delete_smart_folder",
|
|
440
436
|
"description": "Delete a smart folder."
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"name": "list_user_guides",
|
|
440
|
+
"description": "List Airmail's built-in user guides (every Settings tab plus task/feature guides)."
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"name": "get_user_guide",
|
|
444
|
+
"description": "Read one Airmail user guide by slug (from list_user_guides), returned as Markdown."
|
|
441
445
|
}
|
|
442
446
|
],
|
|
443
447
|
"keywords": [
|
package/package.json
CHANGED