@solongate/proxy 0.26.3 → 0.27.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/dist/create.js CHANGED
@@ -141,7 +141,7 @@ function createProject(dir, name, _policy) {
141
141
  },
142
142
  dependencies: {
143
143
  "@modelcontextprotocol/sdk": "^1.26.0",
144
- "@solongate/sdk": "latest",
144
+ "@solongate/proxy": "latest",
145
145
  zod: "^3.25.0"
146
146
  },
147
147
  devDependencies: {
@@ -185,7 +185,7 @@ console.log = (...args: unknown[]) => {
185
185
  process.stderr.write(args.map(String).join(' ') + '\\n');
186
186
  };
187
187
 
188
- import { SecureMcpServer } from '@solongate/sdk';
188
+ import { SecureMcpServer } from '@solongate/proxy';
189
189
  import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
190
190
  import { z } from 'zod';
191
191