@enactprotocol/mcp-server 1.0.11 → 1.0.13

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 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: "direct",
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) {
@@ -237877,7 +237877,7 @@ if (true) {
237877
237877
  var enactCore2 = new EnactCore({
237878
237878
  apiUrl: process.env.ENACT_API_URL || "https://enact.tools",
237879
237879
  supabaseUrl: process.env.ENACT_SUPABASE_URL || "https://xjnhhxwxovjifdxdwzih.supabase.co",
237880
- executionProvider: "direct",
237880
+ executionProvider: process.env.ENACT_EXECUTION_PROVIDER || "dagger",
237881
237881
  verificationPolicy: process.env.ENACT_VERIFY_POLICY || "permissive",
237882
237882
  authToken: process.env.ENACT_AUTH_TOKEN,
237883
237883
  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: "direct",
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) {
@@ -237876,7 +237876,7 @@ if (true) {
237876
237876
  var enactCore2 = new EnactCore({
237877
237877
  apiUrl: process.env.ENACT_API_URL || "https://enact.tools",
237878
237878
  supabaseUrl: process.env.ENACT_SUPABASE_URL || "https://xjnhhxwxovjifdxdwzih.supabase.co",
237879
- executionProvider: "direct",
237879
+ executionProvider: process.env.ENACT_EXECUTION_PROVIDER || "dagger",
237880
237880
  verificationPolicy: process.env.ENACT_VERIFY_POLICY || "permissive",
237881
237881
  authToken: process.env.ENACT_AUTH_TOKEN,
237882
237882
  defaultTimeout: "120s"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enactprotocol/mcp-server",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
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": "workspace:*",
44
+ "@enactprotocol/shared": "^1.0.13",
45
45
  "@modelcontextprotocol/sdk": "^1.13.0",
46
46
  "zod": "^3.25.67"
47
47
  },