metheus-governance-mcp-cli 0.2.95 → 0.2.97
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.mjs +4 -2
- package/lib/bot-commands.mjs +1 -1
- package/package.json +1 -1
package/cli.mjs
CHANGED
|
@@ -3622,8 +3622,10 @@ function buildBotCommandDeps() {
|
|
|
3622
3622
|
loadBotRunnerConfig,
|
|
3623
3623
|
saveBotRunnerConfig,
|
|
3624
3624
|
listServerBots: async ({ provider, baseURL, timeoutSeconds }) => {
|
|
3625
|
-
const
|
|
3626
|
-
|
|
3625
|
+
const resolved = await resolveAccessTokenForCommand(
|
|
3626
|
+
baseURL || DEFAULT_SITE_URL,
|
|
3627
|
+
intFromRaw(timeoutSeconds, 15),
|
|
3628
|
+
);
|
|
3627
3629
|
if (!resolved.token) {
|
|
3628
3630
|
return {
|
|
3629
3631
|
ok: false,
|
package/lib/bot-commands.mjs
CHANGED