@fonoster/mcp 0.9.26 → 0.9.30
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/tools/index.d.ts +18 -0
- package/dist/tools/index.js +1 -1
- package/package.json +5 -5
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/tools/index.d.ts
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
|
|
3
|
+
* http://github.com/fonoster/fonoster
|
|
4
|
+
*
|
|
5
|
+
* This file is part of Fonoster
|
|
6
|
+
*
|
|
7
|
+
* Licensed under the MIT License (the "License");
|
|
8
|
+
* you may not use this file except in compliance with
|
|
9
|
+
* the License. You may obtain a copy of the License at
|
|
10
|
+
*
|
|
11
|
+
* https://opensource.org/licenses/MIT
|
|
12
|
+
*
|
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
+
* See the License for the specific language governing permissions and
|
|
17
|
+
* limitations under the License.
|
|
18
|
+
*/
|
|
1
19
|
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
2
20
|
/**
|
|
3
21
|
* Registers all tools with the MCP server
|
package/dist/tools/index.js
CHANGED
|
@@ -11,10 +11,10 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.registerTools = registerTools;
|
|
13
13
|
const schemas_1 = require("../schemas");
|
|
14
|
+
const createClient_1 = require("../utils/createClient");
|
|
14
15
|
const createCreateCall_1 = require("./createCreateCall");
|
|
15
16
|
const createListApplications_1 = require("./createListApplications");
|
|
16
17
|
const createListNumbers_1 = require("./createListNumbers");
|
|
17
|
-
const createClient_1 = require("../utils/createClient");
|
|
18
18
|
/**
|
|
19
19
|
* Registers all tools with the MCP server
|
|
20
20
|
* @param server The MCP server instance
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fonoster/mcp",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.30",
|
|
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",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"clean": "rimraf ./dist node_modules tsconfig.tsbuildinfo"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@fonoster/common": "^0.9.
|
|
24
|
-
"@fonoster/logger": "^0.9.
|
|
25
|
-
"@fonoster/sdk": "^0.9.
|
|
23
|
+
"@fonoster/common": "^0.9.30",
|
|
24
|
+
"@fonoster/logger": "^0.9.30",
|
|
25
|
+
"@fonoster/sdk": "^0.9.30",
|
|
26
26
|
"@modelcontextprotocol/sdk": "^1.4.0"
|
|
27
27
|
},
|
|
28
28
|
"files": [
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"bugs": {
|
|
39
39
|
"url": "https://github.com/fonoster/fonoster/issues"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "620549f395f1207b0ee7a33aaee232e5498cf6d5"
|
|
42
42
|
}
|