@endiagram/mcp 0.2.15 → 0.2.16
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/tools.json +14 -0
package/package.json
CHANGED
package/tools.json
CHANGED
|
@@ -99,6 +99,20 @@
|
|
|
99
99
|
{"name": "source", "type": "string", "description": "EN source code describing the system", "required": true}
|
|
100
100
|
]
|
|
101
101
|
},
|
|
102
|
+
{
|
|
103
|
+
"name": "responsibility",
|
|
104
|
+
"description": "Who does what. Output: actors lists each actor with their actionCount and the entities their actions touch. coAction lists actor pairs sharing actions (from the actor co-action matrix). workloadEntropy is 0-1 normalized — 0 means all work on one actor, 1 means perfectly even distribution.",
|
|
105
|
+
"parameters": [
|
|
106
|
+
{"name": "source", "type": "string", "description": "EN source code describing the system", "required": true}
|
|
107
|
+
]
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "locality",
|
|
111
|
+
"description": "Where work happens. Output: locations lists each location with actionCount and entities handled there. coLocation lists location pairs sharing actions. boundaryCrossings counts entity flows where the producing action and consuming action are at different locations. localityEntropy is 0-1 normalized — 0 means all actions at one location, 1 means perfectly distributed.",
|
|
112
|
+
"parameters": [
|
|
113
|
+
{"name": "source", "type": "string", "description": "EN source code describing the system", "required": true}
|
|
114
|
+
]
|
|
115
|
+
},
|
|
102
116
|
{
|
|
103
117
|
"name": "render",
|
|
104
118
|
"description": "SVG diagram. Only call when user explicitly asks to visualize.",
|