@ateam-ai/mcp 0.3.20 → 0.3.21
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 +3 -2
package/package.json
CHANGED
package/src/tools.js
CHANGED
|
@@ -108,9 +108,9 @@ export const tools = [
|
|
|
108
108
|
properties: {
|
|
109
109
|
type: {
|
|
110
110
|
type: "string",
|
|
111
|
-
enum: ["skill", "connector", "connector-ui", "solution", "index"],
|
|
111
|
+
enum: ["skill", "connector", "connector-ui", "solution", "script-cache-skill", "index"],
|
|
112
112
|
description:
|
|
113
|
-
"Example type: 'skill' = Order Support Agent, 'connector' = stdio MCP connector, 'connector-ui' = UI-capable connector, 'solution' = full 3-skill e-commerce solution, 'index' = list all available examples",
|
|
113
|
+
"Example type: 'skill' = Order Support Agent, 'connector' = stdio MCP connector, 'connector-ui' = UI-capable connector, 'solution' = full 3-skill e-commerce solution, 'script-cache-skill' = fat-tool skill with script_cache opt-in (reference implementation of script-level JIT shortcuts — study this before building any browser-automation skill), 'index' = list all available examples",
|
|
114
114
|
},
|
|
115
115
|
},
|
|
116
116
|
required: ["type"],
|
|
@@ -1108,6 +1108,7 @@ const EXAMPLE_PATHS = {
|
|
|
1108
1108
|
connector: "/spec/examples/connector",
|
|
1109
1109
|
"connector-ui": "/spec/examples/connector-ui",
|
|
1110
1110
|
solution: "/spec/examples/solution",
|
|
1111
|
+
"script-cache-skill": "/spec/examples/script-cache-skill",
|
|
1111
1112
|
};
|
|
1112
1113
|
|
|
1113
1114
|
// Tools that are tenant-aware — require EXPLICIT ateam_auth (env vars alone not enough).
|