@apono-io/apono-mcp 0.1.0 → 0.1.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/lib/download.js CHANGED
@@ -64,7 +64,7 @@ function getInstalledVersion() {
64
64
  if (!fs.existsSync(BINARY_PATH)) {
65
65
  return null;
66
66
  }
67
- const output = execFileSync(BINARY_PATH, ["--version"], {
67
+ const output = execFileSync(BINARY_PATH, ["version"], {
68
68
  encoding: "utf8",
69
69
  timeout: 10000,
70
70
  }).trim();
package/lib/paths.js CHANGED
@@ -6,7 +6,7 @@ const os = require("os");
6
6
  const RELEASES_BASE_URL = "https://apono-agentic-releases.s3.amazonaws.com";
7
7
 
8
8
  const BINARY_DIR = path.join(os.homedir(), ".apono", "bin");
9
- const BINARY_NAME = process.platform === "win32" ? "apono.exe" : "apono";
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
 
12
12
  module.exports = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apono-io/apono-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Apono MCP server for Claude Code, Claude Desktop, and Cursor",
5
5
  "bin": {
6
6
  "apono-mcp": "./bin/run.js"