@ema.co/mcp-toolkit 2026.2.23 → 2026.2.24
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.
Potentially problematic release.
This version of @ema.co/mcp-toolkit might be problematic. Click here for more details.
- package/dist/mcp/demo-generator.js +177 -0
- package/dist/mcp/domain/validation-rules.js +13 -0
- package/dist/mcp/domain/workflow-graph-optimizer.js +96 -14
- package/dist/mcp/domain/workflow-graph-transforms.js +50 -54
- package/dist/mcp/domain/workflow-graph.js +39 -17
- package/dist/mcp/handlers/data/index.js +74 -15
- package/dist/mcp/handlers/reference/index.js +34 -11
- package/dist/mcp/handlers/workflow/adapter.js +7 -4
- package/dist/mcp/handlers/workflow/optimize.js +9 -5
- package/dist/mcp/knowledge.js +174 -13
- package/dist/mcp/resources-dynamic.js +5 -0
- package/dist/mcp/tools.js +4 -4
- package/dist/sdk/generated/api-client/client/client.gen.js +3 -3
- package/dist/sdk/generated/api-client/client/index.js +5 -5
- package/dist/sdk/generated/api-client/client/utils.gen.js +4 -4
- package/dist/sdk/generated/api-client/client.gen.js +1 -1
- package/dist/sdk/generated/api-client/core/utils.gen.js +1 -1
- package/dist/sdk/generated/api-client/index.js +1 -1
- package/dist/sdk/generated/api-client/sdk.gen.js +2 -2
- package/package.json +2 -2
- package/dist/mcp/domain/workflow-optimizer.js +0 -671
- package/dist/mcp/handlers/workflow/fix.js +0 -587
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
-
import { formDataBodySerializer } from './client';
|
|
3
|
-
import { client } from './client.gen';
|
|
2
|
+
import { formDataBodySerializer } from './client/index.js';
|
|
3
|
+
import { client } from './client.gen.js';
|
|
4
4
|
/**
|
|
5
5
|
* Metrics
|
|
6
6
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ema.co/mcp-toolkit",
|
|
3
|
-
"version": "2026.2.
|
|
3
|
+
"version": "2026.2.24",
|
|
4
4
|
"description": "Ema AI Employee toolkit - MCP server, CLI, and SDK for managing AI Employees across environments",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"check:publish": "tsx scripts/check-publish-content.ts",
|
|
57
57
|
"prepublishOnly": "npm run build && npm run test && npm run check:publish",
|
|
58
58
|
"generate:types": "tsx scripts/generate-types.ts",
|
|
59
|
-
"generate:api-client": "npx @hey-api/openapi-ts -i src/sdk/generated/openapi.json -o src/sdk/generated/api-client -c @hey-api/client-fetch",
|
|
59
|
+
"generate:api-client": "npx @hey-api/openapi-ts -i src/sdk/generated/openapi.json -o src/sdk/generated/api-client -c @hey-api/client-fetch && tsx scripts/fix-generated-esm-imports.ts",
|
|
60
60
|
"generate:protos": "buf generate ../ema-repos/protos --template buf.gen.yaml",
|
|
61
61
|
"generate:proto-fields": "tsx scripts/generate-proto-fields.ts",
|
|
62
62
|
"generate:deprecated-actions": "tsx scripts/generate-deprecated-actions.ts",
|