fa-mcp-sdk 0.2.206 → 0.2.207
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/bin/fa-mcp.js +3 -1
- package/package.json +1 -1
package/bin/fa-mcp.js
CHANGED
|
@@ -767,7 +767,9 @@ certificate's public and private keys`,
|
|
|
767
767
|
|
|
768
768
|
async handlePackageJson (content, config) {
|
|
769
769
|
try {
|
|
770
|
-
content = content
|
|
770
|
+
content = content
|
|
771
|
+
.replace('"project.name"', '"{{project.name}}"')
|
|
772
|
+
.replace('"node ../scripts', '"node ./scripts');
|
|
771
773
|
// First replace all template parameters in the content string
|
|
772
774
|
let updatedContent = content;
|
|
773
775
|
for (const [param, value] of Object.entries(config)) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fa-mcp-sdk",
|
|
3
3
|
"productName": "FA MCP SDK",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.207",
|
|
5
5
|
"description": "Core infrastructure and templates for building Model Context Protocol (MCP) servers with TypeScript",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/core/index.js",
|