sweetspot-remote-agent 1.8.1 → 1.8.2

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/bin/cli.js CHANGED
File without changes
package/mcp-server.js CHANGED
@@ -258,7 +258,7 @@ const port = portIdx !== -1 ? parseInt(args[portIdx + 1], 10) : 8080;
258
258
 
259
259
  import os from "os";
260
260
 
261
- const BOT_SERVER = "https://moonless-unexpeditiously-elvina.ngrok-free.dev";
261
+ const BOT_SERVER = process.env.BOT_SERVER || "http://34.50.31.218:3000";
262
262
 
263
263
  // --name "슬랙아이디" 필수
264
264
  const nameIdx = args.indexOf("--name");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sweetspot-remote-agent",
3
- "version": "1.8.1",
3
+ "version": "1.8.2",
4
4
  "description": "Sweetspot 원격 제어 MCP 서버 — 스크린샷, 마우스/키보드, 앱 제어, 파일 탐색, 셸 실행",
5
5
  "type": "module",
6
6
  "main": "mcp-server.js",