@apono-io/apono-mcp 0.1.2 → 0.1.4

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/lib/download.js CHANGED
@@ -192,6 +192,20 @@ async function ensureBinary() {
192
192
  fs.copyFileSync(extractedBinary, BINARY_PATH);
193
193
  fs.chmodSync(BINARY_PATH, 0o755);
194
194
 
195
+ // Remove macOS quarantine attribute so Gatekeeper doesn't block the binary
196
+ if (process.platform === "darwin") {
197
+ try {
198
+ execFileSync("xattr", ["-d", "com.apple.quarantine", BINARY_PATH], { timeout: 5000 });
199
+ } catch {
200
+ // Ignore — attribute may not exist
201
+ }
202
+ try {
203
+ execFileSync("xattr", ["-d", "com.apple.provenance", BINARY_PATH], { timeout: 5000 });
204
+ } catch {
205
+ // Ignore
206
+ }
207
+ }
208
+
195
209
  process.stderr.write(`Apono CLI v${latestVersion} installed to ${BINARY_PATH}\n`);
196
210
  } finally {
197
211
  fs.rmSync(tmpDir, { recursive: true, force: true });
package/lib/paths.js CHANGED
@@ -5,7 +5,7 @@ const os = require("os");
5
5
 
6
6
  const RELEASES_BASE_URL = "https://apono-agentic-releases.s3.amazonaws.com";
7
7
 
8
- const BINARY_DIR = path.join(os.homedir(), ".apono", "bin");
8
+ const BINARY_DIR = path.join(os.homedir(), ".local", "bin");
9
9
  const BINARY_NAME = process.platform === "win32" ? "apono-agentic.exe" : "apono-agentic";
10
10
  const BINARY_PATH = path.join(BINARY_DIR, BINARY_NAME);
11
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apono-io/apono-mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Apono MCP server for Claude Code, Claude Desktop, and Cursor",
5
5
  "bin": {
6
6
  "apono-mcp": "./bin/run.js"