@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 +6 -6
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +5 -2
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
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
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.
|
|
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.
|
|
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.
|
|
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
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fonoster/mcp",
|
|
3
|
-
"version": "0.9.
|
|
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": "
|
|
41
|
+
"gitHead": "2eb3d8c5f17be3d87c30cdc353a079aa10b25f2a"
|
|
39
42
|
}
|