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.
@@ -57,7 +57,7 @@
57
57
  "dependencies": {
58
58
  "@modelcontextprotocol/sdk": "^1.29.0",
59
59
  "dotenv": "^17.4.1",
60
- "fa-mcp-sdk": "^0.4.116"
60
+ "fa-mcp-sdk": "^0.4.119"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@types/express": "^5.0.6",
@@ -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: 'basic'
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: '{{webServer.auth.token.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,
@@ -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: 'basic'
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.116",
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",