@fonoster/mcp 0.9.25 → 0.9.27
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/README.md +12 -12
- 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/README.md
CHANGED
|
@@ -56,9 +56,9 @@ Add the following to your `claude_desktop_config.json`:
|
|
|
56
56
|
"@fonoster/mcp"
|
|
57
57
|
],
|
|
58
58
|
"env": {
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
59
|
+
"WORKSPACE_ACCESS_KEY_ID": "your-workspace-access-key-id",
|
|
60
|
+
"APIKEY_ACCESS_KEY_ID": "your-apikey-access-key-id",
|
|
61
|
+
"APIKEY_ACCESS_KEY_SECRET": "your-apikey-access-key-secret"
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
}
|
|
@@ -77,17 +77,17 @@ Add the following to your `claude_desktop_config.json`:
|
|
|
77
77
|
"-i",
|
|
78
78
|
"--rm",
|
|
79
79
|
"-e",
|
|
80
|
-
"
|
|
80
|
+
"WORKSPACE_ACCESS_KEY_ID",
|
|
81
81
|
"-e",
|
|
82
|
-
"
|
|
82
|
+
"APIKEY_ACCESS_KEY_ID",
|
|
83
83
|
"-e",
|
|
84
|
-
"
|
|
84
|
+
"APIKEY_ACCESS_KEY_SECRET",
|
|
85
85
|
"fonoster/mcp"
|
|
86
86
|
],
|
|
87
87
|
"env": {
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
88
|
+
"WORKSPACE_ACCESS_KEY_ID": "your-workspace-access-key-id",
|
|
89
|
+
"APIKEY_ACCESS_KEY_ID": "your-apikey-access-key-id",
|
|
90
|
+
"APIKEY_ACCESS_KEY_SECRET": "your-apikey-access-key-secret"
|
|
91
91
|
}
|
|
92
92
|
}
|
|
93
93
|
}
|
|
@@ -97,9 +97,9 @@ Add the following to your `claude_desktop_config.json`:
|
|
|
97
97
|
### Testing with the MCP Inspector
|
|
98
98
|
|
|
99
99
|
```bash
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
100
|
+
WORKSPACE_ACCESS_KEY_ID="your-workspace-access-key-id" \
|
|
101
|
+
APIKEY_ACCESS_KEY_ID="your-apikey-access-key-id" \
|
|
102
|
+
APIKEY_ACCESS_KEY_SECRET="your-apikey-access-key_secret" \
|
|
103
103
|
npx @modelcontextprotocol/inspector \
|
|
104
104
|
node /Users/psanders/Projects/fonoster/mods/mcp/dist/index.js
|
|
105
105
|
```
|
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.27",
|
|
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": "3d78a138e66dcc479c4013df36aa30dcfbc7ad45"
|
|
39
42
|
}
|