fa-mcp-sdk 0.4.113 → 0.4.115
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fa-mcp-sdk",
|
|
3
3
|
"productName": "FA MCP SDK",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.115",
|
|
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",
|
package/scripts/update-sdk.js
CHANGED
|
@@ -135,14 +135,15 @@ for (const { name, src, dest, preserve = [], respectPin = false } of targets) {
|
|
|
135
135
|
const scriptsSrcDir = join(cwd, './node_modules/fa-mcp-sdk/scripts');
|
|
136
136
|
const scriptsDestDir = join(cwd, 'scripts');
|
|
137
137
|
const individualScripts = [
|
|
138
|
+
'+x.js',
|
|
138
139
|
'cc-hook-oxlint-oxfmt-fix.cjs',
|
|
140
|
+
'claude-2-agents-symlink.js',
|
|
139
141
|
'clone-mcp-ext-apps.js',
|
|
140
142
|
'fcp.js',
|
|
141
143
|
'generate-jwt.js',
|
|
142
144
|
'kill-port.js',
|
|
143
145
|
'pre-commit',
|
|
144
146
|
'remove-nul.js',
|
|
145
|
-
'claude-2-agents-symlink.js',
|
|
146
147
|
'update-sdk.js',
|
|
147
148
|
];
|
|
148
149
|
|
|
@@ -151,7 +152,6 @@ for (const file of individualScripts) {
|
|
|
151
152
|
const dest = join(scriptsDestDir, file);
|
|
152
153
|
if (!existsSync(src)) {
|
|
153
154
|
console.error('Source not found:', src);
|
|
154
|
-
process.exit(1);
|
|
155
155
|
}
|
|
156
156
|
mkdirSync(dirname(dest), { recursive: true });
|
|
157
157
|
cpSync(src, dest);
|