fa-mcp-sdk 0.2.108 → 0.2.110

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 CHANGED
@@ -758,8 +758,8 @@ certificate's public and private keys`,
758
758
  const mcpDomain = config['mcp.domain'];
759
759
  if (mcpDomain) {
760
760
  try {
761
- const oldConfigPath = path.join(targetPath, 'deploy', 'mcp-template.com.conf');
762
- const newConfigPath = path.join(targetPath, 'deploy', `${mcpDomain}.conf`);
761
+ const oldConfigPath = path.join(targetPath, 'deploy/NGINX/sites-enabled/mcp-template.com.conf');
762
+ const newConfigPath = path.join(targetPath, 'deploy/NGINX/sites-enabled', `${mcpDomain}.conf`);
763
763
 
764
764
  await fs.access(oldConfigPath);
765
765
  await fs.rename(oldConfigPath, newConfigPath);
@@ -47,7 +47,7 @@
47
47
  "dependencies": {
48
48
  "@modelcontextprotocol/sdk": "^1.22.0",
49
49
  "dotenv": "^17.2.3",
50
- "fa-mcp-sdk": "^0.2.64",
50
+ "fa-mcp-sdk": "^0.2.108",
51
51
  "swagger-jsdoc": "^6.2.8",
52
52
  "swagger-ui-express": "^5.0.1"
53
53
  },
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.108",
4
+ "version": "0.2.110",
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",