@ema.co/mcp-toolkit 1.5.2 → 1.7.0
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/README.md +2 -2
- package/dist/mcp/handlers-consolidated.js +773 -25
- package/dist/mcp/resources.js +124 -0
- package/dist/mcp/server.js +13 -205
- package/dist/mcp/tools-consolidated.js +163 -103
- package/dist/sdk/action-registry.js +128 -0
- package/dist/sdk/action-schema-parser.js +379 -0
- package/dist/sdk/client.js +757 -90
- package/dist/sdk/generated/api-types.js +11 -0
- package/dist/sdk/index.js +59 -2
- package/dist/sdk/intent-architect.js +883 -0
- package/dist/sdk/knowledge.js +38 -8
- package/dist/sdk/quality-gates.js +386 -0
- package/dist/sdk/sanitizer.js +1121 -0
- package/dist/sdk/structural-rules.js +290 -0
- package/dist/sdk/workflow-generator.js +88 -34
- package/dist/sdk/workflow-intent.js +237 -24
- package/dist/sdk/workflow-optimizer.js +665 -0
- package/dist/sdk/workflow-tracer.js +648 -0
- package/dist/sdk/workflow-transformer.js +10 -0
- package/dist/sdk/workflow-validator.js +609 -0
- package/docs/local-generation.md +508 -0
- package/docs/mcp-flow-diagram.md +135 -0
- package/docs/mcp-tools-guide.md +196 -204
- package/docs/release-process.md +153 -0
- package/docs/tool-consolidation-proposal.md +166 -378
- package/package.json +8 -2
- package/resources/action-schema.json +5678 -0
- package/resources/config/gates.json +88 -0
- package/resources/config/gates.schema.json +77 -0
- package/resources/templates/auto-builder-rules.md +222 -0
- package/resources/templates/demo-scenarios/test-published-package.md +116 -0
package/README.md
CHANGED
|
@@ -203,11 +203,11 @@ environments:
|
|
|
203
203
|
| Tool | Purpose |
|
|
204
204
|
|------|---------|
|
|
205
205
|
| `env` | List available environments |
|
|
206
|
-
| `persona` | AI Employee management (get/list/create/
|
|
206
|
+
| `persona` | AI Employee management (get/list/create/clone/sanitize/compare) |
|
|
207
207
|
| `workflow` | Generate/extend/optimize/analyze workflows |
|
|
208
208
|
| `action` | Agent lookup, docs, and recommendations |
|
|
209
209
|
| `template` | Patterns, widgets, qualifying questions |
|
|
210
|
-
| `knowledge` | Data sources + embedding (upload/list/
|
|
210
|
+
| `knowledge` | Data sources + embedding + dashboard data (upload/list/dashboard_rows/dashboard_clone) |
|
|
211
211
|
| `reference` | Concepts, guidance, validation, common mistakes |
|
|
212
212
|
| `sync` | Sync across environments |
|
|
213
213
|
| `demo` | Demo/RAG document utilities |
|