@ateam-ai/mcp 0.3.44 → 0.3.46
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/package.json +1 -1
- package/src/tools.js +6 -71
package/package.json
CHANGED
package/src/tools.js
CHANGED
|
@@ -1773,20 +1773,6 @@ const handlers = {
|
|
|
1773
1773
|
tool_prefixes: ["docs.corpus.", "docs.ingest.", "docs.search", "docs.file.", "docs.sync.", "docs.stats"],
|
|
1774
1774
|
typical_use: "Index documents from any source (Dropbox, Gmail attachments, uploaded files), answer questions with retrieved chunks + citations. Fed by source connectors (e.g. dropbox-mcp) that call docs.ingest.file.",
|
|
1775
1775
|
},
|
|
1776
|
-
{
|
|
1777
|
-
id: "handoff-controller-mcp",
|
|
1778
|
-
name: "Handoff Controller",
|
|
1779
|
-
purpose: "Live conversation handoffs between skills in a multi-skill solution",
|
|
1780
|
-
tool_prefixes: ["handoff."],
|
|
1781
|
-
typical_use: "Pass a live conversation from one skill to another (e.g. identity-assurance → order-support), carrying grants",
|
|
1782
|
-
},
|
|
1783
|
-
{
|
|
1784
|
-
id: "internal-comm-mcp",
|
|
1785
|
-
name: "Internal Communication",
|
|
1786
|
-
purpose: "Skill-to-skill messaging and voice replies",
|
|
1787
|
-
tool_prefixes: ["comm."],
|
|
1788
|
-
typical_use: "Async message between skills, or send a voice reply back through the Twilio channel",
|
|
1789
|
-
},
|
|
1790
1776
|
{
|
|
1791
1777
|
id: "browser-mcp",
|
|
1792
1778
|
name: "Browser",
|
|
@@ -1817,18 +1803,11 @@ const handlers = {
|
|
|
1817
1803
|
tool_prefixes: ["telegram."],
|
|
1818
1804
|
typical_use: "Send messages to chats/groups, fetch updates, subscribe to inbound messages.",
|
|
1819
1805
|
},
|
|
1820
|
-
{
|
|
1821
|
-
id: "voice-mcp",
|
|
1822
|
-
name: "Voice (Twilio)",
|
|
1823
|
-
purpose: "Inbound and outbound voice calls via Twilio",
|
|
1824
|
-
tool_prefixes: ["voice.", "call."],
|
|
1825
|
-
typical_use: "Initiate outbound calls, accept inbound calls, transcribe audio, send TTS replies. Pairs with internal-comm-mcp for in-call skill messaging.",
|
|
1826
|
-
},
|
|
1827
1806
|
{
|
|
1828
1807
|
id: "mobile-device-mcp",
|
|
1829
1808
|
name: "Mobile Device",
|
|
1830
1809
|
purpose: "Native mobile capabilities — calendar, contacts, SMS, notifications, location",
|
|
1831
|
-
tool_prefixes: ["device.
|
|
1810
|
+
tool_prefixes: ["device.calendar.", "device.contacts.", "device.sms.", "device.notifications.", "device.location."],
|
|
1832
1811
|
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.",
|
|
1833
1812
|
},
|
|
1834
1813
|
{
|
|
@@ -1838,34 +1817,6 @@ const handlers = {
|
|
|
1838
1817
|
tool_prefixes: ["travel."],
|
|
1839
1818
|
typical_use: "Search flights (Google Flights), hotels (Booking.com), homes (Airbnb); plan a roundtrip combining flights+hotels; check user's existing bookings.",
|
|
1840
1819
|
},
|
|
1841
|
-
{
|
|
1842
|
-
id: "home-assistant-mcp",
|
|
1843
|
-
name: "Home Assistant",
|
|
1844
|
-
purpose: "Generic smart-home control via Home Assistant",
|
|
1845
|
-
tool_prefixes: ["home.", "ha."],
|
|
1846
|
-
typical_use: "List devices and rooms, read entity states, call services (turn on, set temperature, etc.). Brand-agnostic — works with any HA-integrated device.",
|
|
1847
|
-
},
|
|
1848
|
-
{
|
|
1849
|
-
id: "hue-mcp",
|
|
1850
|
-
name: "Philips Hue",
|
|
1851
|
-
purpose: "Philips Hue lights and scenes",
|
|
1852
|
-
tool_prefixes: ["hue."],
|
|
1853
|
-
typical_use: "List lights/rooms/scenes, set brightness/color/state, activate scenes.",
|
|
1854
|
-
},
|
|
1855
|
-
{
|
|
1856
|
-
id: "tuya-mcp",
|
|
1857
|
-
name: "Tuya",
|
|
1858
|
-
purpose: "Tuya/Smart Life devices (plugs, lights, sensors)",
|
|
1859
|
-
tool_prefixes: ["tuya."],
|
|
1860
|
-
typical_use: "Control Tuya-cloud devices — switches, lights, sensors. Useful for cheap commodity smart-home gear.",
|
|
1861
|
-
},
|
|
1862
|
-
{
|
|
1863
|
-
id: "google-home-mcp",
|
|
1864
|
-
name: "Google Home / Nest",
|
|
1865
|
-
purpose: "Google Home and Nest device control",
|
|
1866
|
-
tool_prefixes: ["googleHome.", "nest."],
|
|
1867
|
-
typical_use: "Control Nest thermostats, cameras, doorbells, speakers; cast media to Google Home devices.",
|
|
1868
|
-
},
|
|
1869
1820
|
{
|
|
1870
1821
|
id: "nutrition-mcp",
|
|
1871
1822
|
name: "Nutrition",
|
|
@@ -1875,27 +1826,11 @@ const handlers = {
|
|
|
1875
1826
|
ui_plugins: ["nutrition-dashboard", "nutrition-camera"],
|
|
1876
1827
|
},
|
|
1877
1828
|
{
|
|
1878
|
-
id: "
|
|
1879
|
-
name: "
|
|
1880
|
-
purpose: "
|
|
1881
|
-
tool_prefixes: ["
|
|
1882
|
-
typical_use: "
|
|
1883
|
-
ui_plugins: ["coach-dashboard", "coach-onboarding"],
|
|
1884
|
-
},
|
|
1885
|
-
{
|
|
1886
|
-
id: "dropbox-mcp",
|
|
1887
|
-
name: "Dropbox",
|
|
1888
|
-
purpose: "Dropbox folder ingest source for docs-index",
|
|
1889
|
-
tool_prefixes: ["dropbox."],
|
|
1890
|
-
typical_use: "List Dropbox folders/files, ingest a folder into a docs-index corpus, check sync status. Pairs with docs-index-mcp.",
|
|
1891
|
-
},
|
|
1892
|
-
{
|
|
1893
|
-
id: "personal-assistant-ui-mcp",
|
|
1894
|
-
name: "Personal Assistant UI",
|
|
1895
|
-
purpose: "Pre-built UI plugins for personal-assistant solutions",
|
|
1896
|
-
tool_prefixes: ["ui."],
|
|
1897
|
-
typical_use: "Drop-in panels: Schedule, Dashboard, Memories, Teach, Reminders, Smart Home, Connections. Adaptive (web iframe + RN mobile).",
|
|
1898
|
-
ui_plugins: ["schedule-panel", "pa-dashboard", "memories-panel", "teach-panel", "triggers-panel", "home-layout-panel", "connections-panel"],
|
|
1829
|
+
id: "cloud-docs",
|
|
1830
|
+
name: "Cloud Docs",
|
|
1831
|
+
purpose: "Cloud-storage ingest source (Dropbox/Drive) feeding docs-index",
|
|
1832
|
+
tool_prefixes: ["cloud."],
|
|
1833
|
+
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.",
|
|
1899
1834
|
},
|
|
1900
1835
|
],
|
|
1901
1836
|
how_to_use: {
|