@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 CHANGED
@@ -56,9 +56,9 @@ Add the following to your `claude_desktop_config.json`:
56
56
  "@fonoster/mcp"
57
57
  ],
58
58
  "env": {
59
- "MCP_WORKSPACE_ACCESS_KEY_ID": "your-workspace-access-key-id",
60
- "MCP_ACCESS_KEY_ID": "your-apikey-access-key-id",
61
- "MCP_ACCESS_KEY_SECRET": "your-apikey-access-key-secret"
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
- "MCP_WORKSPACE_ACCESS_KEY_ID",
80
+ "WORKSPACE_ACCESS_KEY_ID",
81
81
  "-e",
82
- "MCP_ACCESS_KEY_ID",
82
+ "APIKEY_ACCESS_KEY_ID",
83
83
  "-e",
84
- "MCP_ACCESS_KEY_SECRET",
84
+ "APIKEY_ACCESS_KEY_SECRET",
85
85
  "fonoster/mcp"
86
86
  ],
87
87
  "env": {
88
- "MCP_WORKSPACE_ACCESS_KEY_ID": "your-workspace-access-key-id",
89
- "MCP_ACCESS_KEY_ID": "your-apikey-access-key-id",
90
- "MCP_ACCESS_KEY_SECRET": "your-apikey-access-key-secret"
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
- MCP_WORKSPACE_ACCESS_KEY_ID="your-workspace-access-key-id" \
101
- MCP_ACCESS_KEY_ID="your-apikey-access-key-id" \
102
- MCP_ACCESS_KEY_SECRET="your-apikey-access-key_secret" \
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
- "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.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": "7fb41c18b755c07fd168e6d43f4651e733353afc"
41
+ "gitHead": "3d78a138e66dcc479c4013df36aa30dcfbc7ad45"
39
42
  }