@ateam-ai/mcp 0.3.43 → 0.3.45

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/tools.js +55 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ateam-ai/mcp",
3
- "version": "0.3.43",
3
+ "version": "0.3.45",
4
4
  "mcpName": "io.github.ariekogan/ateam-mcp",
5
5
  "description": "A-Team MCP Server — build, validate, and deploy multi-agent solutions from any AI environment",
6
6
  "type": "module",
package/src/tools.js CHANGED
@@ -1790,9 +1790,61 @@ const handlers = {
1790
1790
  {
1791
1791
  id: "browser-mcp",
1792
1792
  name: "Browser",
1793
- purpose: "Headless Chromium automation (Playwright)",
1794
- tool_prefixes: ["web."],
1795
- typical_use: "Navigate, read, click, type, screenshot any public web page; scrape data for enrichment",
1793
+ purpose: "Headless Chromium automation (Playwright) + Auth WebView for OAuth/cookie capture",
1794
+ tool_prefixes: ["web.", "auth."],
1795
+ typical_use: "Navigate, read, click, type, screenshot any public web page; scrape data for enrichment. Auth WebView handles OAuth code extraction and cookie capture without exposing passwords to the LLM.",
1796
+ ui_plugins: ["browser-view", "auth-webview"],
1797
+ },
1798
+ {
1799
+ id: "gmail-mcp",
1800
+ name: "Gmail",
1801
+ purpose: "Gmail inbox operations via OAuth",
1802
+ tool_prefixes: ["gmail."],
1803
+ typical_use: "Fetch, search, send, label, cleanup, trash, archive, move, mark-read on the user's Gmail. Requires platform.auth.ensureConnected('gmail') first.",
1804
+ },
1805
+ {
1806
+ id: "whatsapp-mcp",
1807
+ name: "WhatsApp",
1808
+ purpose: "WhatsApp messaging via pairing-code auth",
1809
+ tool_prefixes: ["whatsapp."],
1810
+ typical_use: "Send and fetch WhatsApp messages, list chats, manage contacts. UI plugin provides the pairing-code connect flow.",
1811
+ ui_plugins: ["whatsapp-setup"],
1812
+ },
1813
+ {
1814
+ id: "telegram-mcp",
1815
+ name: "Telegram",
1816
+ purpose: "Telegram messaging via bot token",
1817
+ tool_prefixes: ["telegram."],
1818
+ typical_use: "Send messages to chats/groups, fetch updates, subscribe to inbound messages.",
1819
+ },
1820
+ {
1821
+ id: "mobile-device-mcp",
1822
+ name: "Mobile Device",
1823
+ purpose: "Native mobile capabilities — calendar, contacts, SMS, notifications, location",
1824
+ tool_prefixes: ["device.calendar.", "device.contacts.", "device.sms.", "device.notifications.", "device.location."],
1825
+ typical_use: "Read/write the device calendar, look up contacts, send SMS, read notifications, get current location. Backed by the mobile app's native bridge.",
1826
+ },
1827
+ {
1828
+ id: "travel-mcp",
1829
+ name: "Travel",
1830
+ purpose: "Unified travel search — flights, hotels, homes",
1831
+ tool_prefixes: ["travel."],
1832
+ typical_use: "Search flights (Google Flights), hotels (Booking.com), homes (Airbnb); plan a roundtrip combining flights+hotels; check user's existing bookings.",
1833
+ },
1834
+ {
1835
+ id: "nutrition-mcp",
1836
+ name: "Nutrition",
1837
+ purpose: "Meal logging, calorie/macro tracking, hydration",
1838
+ tool_prefixes: ["nutrition."],
1839
+ typical_use: "Log meals from text or photo, compute calories/macros, track water intake, daily/weekly summaries. Photo input via camera UI plugin.",
1840
+ ui_plugins: ["nutrition-dashboard", "nutrition-camera"],
1841
+ },
1842
+ {
1843
+ id: "cloud-docs",
1844
+ name: "Cloud Docs",
1845
+ purpose: "Cloud-storage ingest source (Dropbox/Drive) feeding docs-index",
1846
+ tool_prefixes: ["cloud."],
1847
+ typical_use: "Connect a Dropbox or Drive account, list folders, ingest a folder into a docs-index corpus, check sync status. Pairs with docs-index-mcp.",
1796
1848
  },
1797
1849
  ],
1798
1850
  how_to_use: {