@ellery/savio 0.1.0 → 0.2.1

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -232,8 +232,12 @@ async function startProxy(refreshToken, serverUrl) {
232
232
 
233
233
  // src/index.ts
234
234
  var DEFAULT_SERVER = "https://app.savio.so";
235
- var program = new Command().name("savio").description("Savio MCP proxy \u2014 browser auth for Claude Code").version("0.1.0");
235
+ var program = new Command().name("savio").description("Savio MCP server \u2014 browser auth and local stdio proxy").version("0.1.0");
236
236
  program.command("proxy", { isDefault: true, hidden: true }).description("Start the MCP stdio proxy (default command)").action(async () => {
237
+ if (process.stdin.isTTY) {
238
+ program.outputHelp();
239
+ return;
240
+ }
237
241
  const creds = loadCredentials();
238
242
  if (!creds) {
239
243
  process.stderr.write("Not authenticated. Run: npx @ellery/savio login\n");
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ellery/savio",
3
- "version": "0.1.0",
4
- "description": "Savio MCP proxy — browser auth, local stdio transport for Claude Code",
3
+ "version": "0.2.1",
4
+ "description": "Savio MCP server — browser auth and local stdio proxy",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "savio": "./dist/index.js"