@enactprotocol/mcp-server 1.0.12 → 1.0.14
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/dist/index.js +7 -5
- package/dist/index.js.bak +7 -5
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -236555,7 +236555,7 @@ class EnactCore {
|
|
|
236555
236555
|
this.options = {
|
|
236556
236556
|
apiUrl: "https://enact.tools",
|
|
236557
236557
|
supabaseUrl: "https://xjnhhxwxovjifdxdwzih.supabase.co",
|
|
236558
|
-
executionProvider: "
|
|
236558
|
+
executionProvider: "dagger",
|
|
236559
236559
|
defaultTimeout: "30s",
|
|
236560
236560
|
verificationPolicy: "permissive",
|
|
236561
236561
|
...options
|
|
@@ -237005,11 +237005,11 @@ class EnactCore {
|
|
|
237005
237005
|
}
|
|
237006
237006
|
createExecutionProvider() {
|
|
237007
237007
|
switch (this.options.executionProvider) {
|
|
237008
|
-
case "dagger":
|
|
237009
|
-
return new DaggerExecutionProvider(this.options.daggerOptions);
|
|
237010
237008
|
case "direct":
|
|
237011
|
-
default:
|
|
237012
237009
|
return new DirectExecutionProvider;
|
|
237010
|
+
case "dagger":
|
|
237011
|
+
default:
|
|
237012
|
+
return new DaggerExecutionProvider(this.options.daggerOptions);
|
|
237013
237013
|
}
|
|
237014
237014
|
}
|
|
237015
237015
|
switchExecutionProvider(provider, options) {
|
|
@@ -237166,6 +237166,8 @@ function validateSilentEnvironment() {
|
|
|
237166
237166
|
issues
|
|
237167
237167
|
};
|
|
237168
237168
|
}
|
|
237169
|
+
// ../shared/dist/utils/version.js
|
|
237170
|
+
var __filename = "/Users/keithgroves/projects/enact/enact-cli/packages/shared/dist/utils/version.js";
|
|
237169
237171
|
// ../shared/dist/web/env-manager-server.js
|
|
237170
237172
|
import { createServer } from "http";
|
|
237171
237173
|
import { parse as parse4 } from "url";
|
|
@@ -237877,7 +237879,7 @@ if (true) {
|
|
|
237877
237879
|
var enactCore2 = new EnactCore({
|
|
237878
237880
|
apiUrl: process.env.ENACT_API_URL || "https://enact.tools",
|
|
237879
237881
|
supabaseUrl: process.env.ENACT_SUPABASE_URL || "https://xjnhhxwxovjifdxdwzih.supabase.co",
|
|
237880
|
-
executionProvider: "
|
|
237882
|
+
executionProvider: process.env.ENACT_EXECUTION_PROVIDER || "dagger",
|
|
237881
237883
|
verificationPolicy: process.env.ENACT_VERIFY_POLICY || "permissive",
|
|
237882
237884
|
authToken: process.env.ENACT_AUTH_TOKEN,
|
|
237883
237885
|
defaultTimeout: "120s"
|
package/dist/index.js.bak
CHANGED
|
@@ -236554,7 +236554,7 @@ class EnactCore {
|
|
|
236554
236554
|
this.options = {
|
|
236555
236555
|
apiUrl: "https://enact.tools",
|
|
236556
236556
|
supabaseUrl: "https://xjnhhxwxovjifdxdwzih.supabase.co",
|
|
236557
|
-
executionProvider: "
|
|
236557
|
+
executionProvider: "dagger",
|
|
236558
236558
|
defaultTimeout: "30s",
|
|
236559
236559
|
verificationPolicy: "permissive",
|
|
236560
236560
|
...options
|
|
@@ -237004,11 +237004,11 @@ class EnactCore {
|
|
|
237004
237004
|
}
|
|
237005
237005
|
createExecutionProvider() {
|
|
237006
237006
|
switch (this.options.executionProvider) {
|
|
237007
|
-
case "dagger":
|
|
237008
|
-
return new DaggerExecutionProvider(this.options.daggerOptions);
|
|
237009
237007
|
case "direct":
|
|
237010
|
-
default:
|
|
237011
237008
|
return new DirectExecutionProvider;
|
|
237009
|
+
case "dagger":
|
|
237010
|
+
default:
|
|
237011
|
+
return new DaggerExecutionProvider(this.options.daggerOptions);
|
|
237012
237012
|
}
|
|
237013
237013
|
}
|
|
237014
237014
|
switchExecutionProvider(provider, options) {
|
|
@@ -237165,6 +237165,8 @@ function validateSilentEnvironment() {
|
|
|
237165
237165
|
issues
|
|
237166
237166
|
};
|
|
237167
237167
|
}
|
|
237168
|
+
// ../shared/dist/utils/version.js
|
|
237169
|
+
var __filename = "/Users/keithgroves/projects/enact/enact-cli/packages/shared/dist/utils/version.js";
|
|
237168
237170
|
// ../shared/dist/web/env-manager-server.js
|
|
237169
237171
|
import { createServer } from "http";
|
|
237170
237172
|
import { parse as parse4 } from "url";
|
|
@@ -237876,7 +237878,7 @@ if (true) {
|
|
|
237876
237878
|
var enactCore2 = new EnactCore({
|
|
237877
237879
|
apiUrl: process.env.ENACT_API_URL || "https://enact.tools",
|
|
237878
237880
|
supabaseUrl: process.env.ENACT_SUPABASE_URL || "https://xjnhhxwxovjifdxdwzih.supabase.co",
|
|
237879
|
-
executionProvider: "
|
|
237881
|
+
executionProvider: process.env.ENACT_EXECUTION_PROVIDER || "dagger",
|
|
237880
237882
|
verificationPolicy: process.env.ENACT_VERIFY_POLICY || "permissive",
|
|
237881
237883
|
authToken: process.env.ENACT_AUTH_TOKEN,
|
|
237882
237884
|
defaultTimeout: "120s"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enactprotocol/mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
4
|
"description": "MCP server for the Enact Protocol - enables AI tools integration via Model Context Protocol",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"node": ">=18.0.0"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@enactprotocol/shared": "
|
|
44
|
+
"@enactprotocol/shared": "^1.0.14",
|
|
45
45
|
"@modelcontextprotocol/sdk": "^1.13.0",
|
|
46
46
|
"zod": "^3.25.67"
|
|
47
47
|
},
|