fa-mcp-sdk 0.2.109 → 0.2.111
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 +2 -2
- package/cli-template/config/_local.yaml +1 -1
- package/package.json +1 -1
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
|
|
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);
|
|
@@ -26,7 +26,7 @@ db:
|
|
|
26
26
|
main:
|
|
27
27
|
label: 'Your Database Label'
|
|
28
28
|
database: your_database
|
|
29
|
-
host: '
|
|
29
|
+
host: '' # To exclude the use of the database, you need to set host = ''
|
|
30
30
|
port: 5432
|
|
31
31
|
user: your_user
|
|
32
32
|
password: your_password
|
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.111",
|
|
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",
|