@solongate/proxy 0.1.22 → 0.1.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.
package/dist/create.js CHANGED
@@ -202,7 +202,20 @@ server.tool(
202
202
 
203
203
  const transport = new StdioServerTransport();
204
204
  await server.connect(transport);
205
- console.log('${name} is running');
205
+ console.log('');
206
+ console.log('${name} is running (stdio mode)');
207
+ console.log('');
208
+ console.log('MCP servers communicate over stdin/stdout \u2014 not HTTP.');
209
+ console.log('You need an MCP client to connect:');
210
+ console.log('');
211
+ console.log(' Claude Code Open this folder, .mcp.json is auto-detected');
212
+ console.log(' Claude Desktop Add to Settings > MCP Servers');
213
+ console.log(' Cursor Open this folder, .mcp.json is auto-detected');
214
+ console.log(' Windsurf Open this folder, .mcp.json is auto-detected');
215
+ console.log(' Cline VS Code extension, add server in settings');
216
+ console.log(' Zed Add to settings.json under mcp_servers');
217
+ console.log('');
218
+ console.log('Press Ctrl+C to stop.');
206
219
  `
207
220
  );
208
221
  writeFileSync(
package/dist/index.js CHANGED
@@ -914,7 +914,20 @@ server.tool(
914
914
 
915
915
  const transport = new StdioServerTransport();
916
916
  await server.connect(transport);
917
- console.log('${name} is running');
917
+ console.log('');
918
+ console.log('${name} is running (stdio mode)');
919
+ console.log('');
920
+ console.log('MCP servers communicate over stdin/stdout \u2014 not HTTP.');
921
+ console.log('You need an MCP client to connect:');
922
+ console.log('');
923
+ console.log(' Claude Code Open this folder, .mcp.json is auto-detected');
924
+ console.log(' Claude Desktop Add to Settings > MCP Servers');
925
+ console.log(' Cursor Open this folder, .mcp.json is auto-detected');
926
+ console.log(' Windsurf Open this folder, .mcp.json is auto-detected');
927
+ console.log(' Cline VS Code extension, add server in settings');
928
+ console.log(' Zed Add to settings.json under mcp_servers');
929
+ console.log('');
930
+ console.log('Press Ctrl+C to stop.');
918
931
  `
919
932
  );
920
933
  writeFileSync3(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solongate/proxy",
3
- "version": "0.1.22",
3
+ "version": "0.1.24",
4
4
  "description": "MCP security proxy \u00e2\u20ac\u201d protect any MCP server with policies, input validation, rate limiting, and audit logging. Zero code changes required.",
5
5
  "type": "module",
6
6
  "bin": {