fa-mcp-sdk 0.4.116 → 0.4.119
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/cli-template/package.json +1 -1
- package/config/_local.yaml +6 -3
- package/config/default.yaml +4 -2
- package/package.json +1 -1
package/config/_local.yaml
CHANGED
|
@@ -42,7 +42,10 @@ adminPanel:
|
|
|
42
42
|
#> For ntlm — uses AD configuration from ad.domains section.
|
|
43
43
|
#> When multiple types are set (e.g. ['jwtToken', 'basic']), the login page shows tabs
|
|
44
44
|
#> to choose between Token and Login (username/password) authentication.
|
|
45
|
-
authType:
|
|
45
|
+
authType:
|
|
46
|
+
- permanentServerTokens
|
|
47
|
+
- jwtToken
|
|
48
|
+
|
|
46
49
|
|
|
47
50
|
#> Active Directory / LDAP settings.
|
|
48
51
|
#> Used for authentication/authorization (e.g., NTLM in admin panel) and checking user membership in AD groups.
|
|
@@ -303,7 +306,7 @@ webServer:
|
|
|
303
306
|
#> and set one token of at least 20 characters in length
|
|
304
307
|
#> ========================================================================
|
|
305
308
|
#> Add your server tokens here: ['token1', 'token2']
|
|
306
|
-
permanentServerTokens: [ ]
|
|
309
|
+
permanentServerTokens: [ 'token' ]
|
|
307
310
|
|
|
308
311
|
#> ========================================================================
|
|
309
312
|
#> JWT TOKEN — standard signed JWT (HS256)
|
|
@@ -317,7 +320,7 @@ webServer:
|
|
|
317
320
|
#> ========================================================================
|
|
318
321
|
jwtToken:
|
|
319
322
|
#> HS256 signing secret used to sign/verify tokens for this MCP (minimum 8 chars)
|
|
320
|
-
encryptKey:
|
|
323
|
+
encryptKey: {{webServer.auth.token.encryptKey}}
|
|
321
324
|
#> If webServer.auth.enabled and the parameter true, the service name and the service specified in the token will be checked
|
|
322
325
|
checkMCPName: {{webServer.auth.token.checkMCPName}}
|
|
323
326
|
#> If true and JWT token contains non-empty 'ip' field,
|
package/config/default.yaml
CHANGED
|
@@ -40,7 +40,9 @@ adminPanel:
|
|
|
40
40
|
#> For ntlm — uses AD configuration from ad.domains section.
|
|
41
41
|
#> When multiple types are set (e.g. ['jwtToken', 'basic']), the login page shows tabs
|
|
42
42
|
#> to choose between Token and Login (username/password) authentication.
|
|
43
|
-
authType:
|
|
43
|
+
authType:
|
|
44
|
+
- permanentServerTokens
|
|
45
|
+
- jwtToken
|
|
44
46
|
|
|
45
47
|
#> Active Directory / LDAP settings.
|
|
46
48
|
#> Used for authentication/authorization (e.g., NTLM in admin panel) and checking user membership in AD groups.
|
|
@@ -301,7 +303,7 @@ webServer:
|
|
|
301
303
|
#> and set one token of at least 20 characters in length
|
|
302
304
|
#> ========================================================================
|
|
303
305
|
#> Add your server tokens here: ['token1', 'token2']
|
|
304
|
-
permanentServerTokens: [ ]
|
|
306
|
+
permanentServerTokens: [ 'token' ]
|
|
305
307
|
|
|
306
308
|
#> ========================================================================
|
|
307
309
|
#> JWT TOKEN — standard signed JWT (HS256)
|
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.119",
|
|
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",
|