@i4ctime/q-ring 0.15.0 → 0.16.1

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/dist/mcp.js CHANGED
@@ -32,6 +32,7 @@ import {
32
32
  registry,
33
33
  remember,
34
34
  removeHook,
35
+ setAuditAgentLabel,
35
36
  setPolicyRoot,
36
37
  setSecret,
37
38
  tunnelCreate,
@@ -39,7 +40,7 @@ import {
39
40
  tunnelList,
40
41
  tunnelRead,
41
42
  verifyAuditChain
42
- } from "./chunk-TPPPTL4J.js";
43
+ } from "./chunk-NCM5GHNW.js";
43
44
 
44
45
  // src/mcp.ts
45
46
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
@@ -1649,7 +1650,9 @@ function registerAuditTools(server2) {
1649
1650
  "entangle",
1650
1651
  "tunnel",
1651
1652
  "teleport",
1652
- "collapse"
1653
+ "collapse",
1654
+ "canary",
1655
+ "wrap"
1653
1656
  ]).optional().describe(
1654
1657
  "Limit to a single action verb (e.g. 'read' to see only reads). Omit for all actions."
1655
1658
  ),
@@ -2795,7 +2798,7 @@ ${result.stderr}`);
2795
2798
  `Dashboard already running at ${dashboardInstance.url}`
2796
2799
  );
2797
2800
  }
2798
- const { startDashboardServer } = await import("./dashboard-TFWCG23R.js");
2801
+ const { startDashboardServer } = await import("./dashboard-R3FWTFFW.js");
2799
2802
  dashboardInstance = startDashboardServer({ port: params.port });
2800
2803
  return text(
2801
2804
  `Dashboard started at ${dashboardInstance.url}
@@ -2994,6 +2997,10 @@ function createMcpServer() {
2994
2997
  version: PACKAGE_VERSION
2995
2998
  });
2996
2999
  registerMcpTools(server2);
3000
+ server2.server.oninitialized = () => {
3001
+ const info = server2.server.getClientVersion();
3002
+ if (info) setAuditAgentLabel(`${info.name}@${info.version}`);
3003
+ };
2997
3004
  return server2;
2998
3005
  }
2999
3006