@fonoster/mcp 0.9.25 → 0.9.26

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/env.js CHANGED
@@ -21,13 +21,13 @@ exports.ACCESS_KEY_SECRET = exports.ACCESS_KEY_ID = exports.WORKSPACE_ACCESS_KEY
21
21
  */
22
22
  const common_1 = require("@fonoster/common");
23
23
  (0, common_1.assertEnvsAreSet)([
24
- "MCP_WORKSPACE_ACCESS_KEY_ID",
25
- "MCP_ACCESS_KEY_ID",
26
- "MCP_ACCESS_KEY_SECRET"
24
+ "WORKSPACE_ACCESS_KEY_ID",
25
+ "APIKEY_ACCESS_KEY_ID",
26
+ "APIKEY_ACCESS_KEY_SECRET"
27
27
  ]);
28
- const WORKSPACE_ACCESS_KEY_ID = process.env.MCP_WORKSPACE_ACCESS_KEY_ID;
28
+ const WORKSPACE_ACCESS_KEY_ID = process.env.WORKSPACE_ACCESS_KEY_ID;
29
29
  exports.WORKSPACE_ACCESS_KEY_ID = WORKSPACE_ACCESS_KEY_ID;
30
- const ACCESS_KEY_ID = process.env.MCP_ACCESS_KEY_ID;
30
+ const ACCESS_KEY_ID = process.env.APIKEY_ACCESS_KEY_ID;
31
31
  exports.ACCESS_KEY_ID = ACCESS_KEY_ID;
32
- const ACCESS_KEY_SECRET = process.env.MCP_ACCESS_KEY_SECRET;
32
+ const ACCESS_KEY_SECRET = process.env.APIKEY_ACCESS_KEY_SECRET;
33
33
  exports.ACCESS_KEY_SECRET = ACCESS_KEY_SECRET;
package/dist/index.d.ts CHANGED
@@ -1 +1,2 @@
1
+ #!/usr/bin/env node
1
2
  export {};
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  "use strict";
2
3
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
4
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
package/package.json CHANGED
@@ -1,12 +1,15 @@
1
1
  {
2
2
  "name": "@fonoster/mcp",
3
- "version": "0.9.25",
3
+ "version": "0.9.26",
4
4
  "description": "Model Context Protocol for Fonoster",
5
5
  "author": "Pedro Sanders <psanders@fonoster.com>",
6
6
  "homepage": "https://github.com/fonoster/fonoster#readme",
7
7
  "license": "MIT",
8
8
  "main": "dist/index",
9
9
  "types": "dist/index",
10
+ "bin": {
11
+ "fonoster-mcp": "./dist/index.js"
12
+ },
10
13
  "directories": {
11
14
  "src": "src",
12
15
  "test": "test"
@@ -35,5 +38,5 @@
35
38
  "bugs": {
36
39
  "url": "https://github.com/fonoster/fonoster/issues"
37
40
  },
38
- "gitHead": "7fb41c18b755c07fd168e6d43f4651e733353afc"
41
+ "gitHead": "2eb3d8c5f17be3d87c30cdc353a079aa10b25f2a"
39
42
  }