@ateam-ai/mcp 0.1.2 → 0.1.3

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 +12 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ateam-ai/mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "mcpName": "io.github.ariekogan/ateam-mcp",
5
5
  "description": "ADAS MCP Server — build, validate, and deploy multi-agent solutions from any AI environment",
6
6
  "type": "module",
package/src/tools.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * ADAS MCP tool definitions and handlers.
3
- * 12 tools covering the full ADAS External Agent API.
3
+ * 13 tools covering the full ADAS External Agent API.
4
4
  */
5
5
 
6
6
  import { get, post, patch, del } from "./api.js";
@@ -25,6 +25,15 @@ export const tools = [
25
25
  required: ["topic"],
26
26
  },
27
27
  },
28
+ {
29
+ name: "adas_get_workflows",
30
+ description:
31
+ "Get the builder workflows — step-by-step state machines for building skills and solutions. Use this to guide users through the entire build process conversationally. Returns phases, what to ask, what to build, exit criteria, and tips for each stage.",
32
+ inputSchema: {
33
+ type: "object",
34
+ properties: {},
35
+ },
36
+ },
28
37
  {
29
38
  name: "adas_get_examples",
30
39
  description:
@@ -261,6 +270,8 @@ const EXAMPLE_PATHS = {
261
270
  const handlers = {
262
271
  adas_get_spec: async ({ topic }) => get(SPEC_PATHS[topic]),
263
272
 
273
+ adas_get_workflows: async () => get("/spec/workflows"),
274
+
264
275
  adas_get_examples: async ({ type }) => get(EXAMPLE_PATHS[type]),
265
276
 
266
277
  adas_validate_skill: async ({ skill }) => post("/validate/skill", { skill }),