@gravity-platform/flow 1.1.5 → 1.1.6

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 (1) hide show
  1. package/package.json +25 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravity-platform/flow",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "Flow control nodes for GravityWorkflow - Code, Loop, IfElse, Context, Relay, Note, UMAP",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -24,10 +24,32 @@
24
24
  "access": "public"
25
25
  },
26
26
  "gravity": {
27
+ "displayName": "Flow Control",
28
+ "category": "flow",
27
29
  "logoUrl": "https://res.cloudinary.com/sonik/image/upload/v1750052178/gravity/icons/6359572-200.png",
28
30
  "nodes": [
29
- "MCP Service",
30
- "Send Object"
31
+ {
32
+ "name": "MCP Service",
33
+ "type": "PromiseNode",
34
+ "description": "Expose workflow nodes as MCP tools for agent consumption",
35
+ "category": "Flow",
36
+ "mcp": true
37
+ },
38
+ {
39
+ "name": "Send Object",
40
+ "type": "PromiseNode",
41
+ "description": "Route structured data objects between workflow nodes",
42
+ "category": "Flow",
43
+ "mcp": false
44
+ }
45
+ ],
46
+ "features": [
47
+ "MCP tool exposure",
48
+ "Object routing",
49
+ "Code execution",
50
+ "Loop iteration",
51
+ "Conditional branching",
52
+ "UMAP dimensionality reduction"
31
53
  ]
32
54
  }
33
55
  }