@solongate/proxy 0.1.22 → 0.1.23
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 +12 -1
- package/dist/index.js +12 -1
- package/package.json +1 -1
package/dist/create.js
CHANGED
|
@@ -202,7 +202,18 @@ server.tool(
|
|
|
202
202
|
|
|
203
203
|
const transport = new StdioServerTransport();
|
|
204
204
|
await server.connect(transport);
|
|
205
|
-
console.log('
|
|
205
|
+
console.log('');
|
|
206
|
+
console.log('${name} is running (stdio mode)');
|
|
207
|
+
console.log('');
|
|
208
|
+
console.log('This server communicates over stdin/stdout (MCP protocol).');
|
|
209
|
+
console.log('It does NOT open a URL or port \u2014 it is used by MCP clients.');
|
|
210
|
+
console.log('');
|
|
211
|
+
console.log('To connect:');
|
|
212
|
+
console.log(' 1. Open this folder in Claude Code, Cursor, or another MCP client');
|
|
213
|
+
console.log(' 2. .mcp.json is auto-detected \u2014 your tools are ready to use');
|
|
214
|
+
console.log(' 3. Try asking: "Use the hello tool to greet Alice"');
|
|
215
|
+
console.log('');
|
|
216
|
+
console.log('Press Ctrl+C to stop.');
|
|
206
217
|
`
|
|
207
218
|
);
|
|
208
219
|
writeFileSync(
|
package/dist/index.js
CHANGED
|
@@ -914,7 +914,18 @@ server.tool(
|
|
|
914
914
|
|
|
915
915
|
const transport = new StdioServerTransport();
|
|
916
916
|
await server.connect(transport);
|
|
917
|
-
console.log('
|
|
917
|
+
console.log('');
|
|
918
|
+
console.log('${name} is running (stdio mode)');
|
|
919
|
+
console.log('');
|
|
920
|
+
console.log('This server communicates over stdin/stdout (MCP protocol).');
|
|
921
|
+
console.log('It does NOT open a URL or port \u2014 it is used by MCP clients.');
|
|
922
|
+
console.log('');
|
|
923
|
+
console.log('To connect:');
|
|
924
|
+
console.log(' 1. Open this folder in Claude Code, Cursor, or another MCP client');
|
|
925
|
+
console.log(' 2. .mcp.json is auto-detected \u2014 your tools are ready to use');
|
|
926
|
+
console.log(' 3. Try asking: "Use the hello tool to greet Alice"');
|
|
927
|
+
console.log('');
|
|
928
|
+
console.log('Press Ctrl+C to stop.');
|
|
918
929
|
`
|
|
919
930
|
);
|
|
920
931
|
writeFileSync3(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solongate/proxy",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23",
|
|
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": {
|