@quantakrypto/mcp 0.4.0 → 0.4.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/index.d.ts CHANGED
@@ -16,7 +16,7 @@ export type { JsonRpcRequest, JsonRpcResponse, JsonRpcSuccess, JsonRpcFailure, T
16
16
  /** The MCP server name advertised to clients. */
17
17
  export declare const SERVER_NAME = "quantakrypto";
18
18
  /** The version reported by the server (kept in sync with @quantakrypto/core). */
19
- export declare const SERVER_VERSION = "0.4.0";
19
+ export declare const SERVER_VERSION = "0.4.1";
20
20
  export interface CreateServerOptions {
21
21
  /** Override the advertised server version (defaults to @quantakrypto/core VERSION). */
22
22
  version?: string;
package/dist/tools.d.ts CHANGED
@@ -50,7 +50,7 @@ export declare const FS_TOOL_NAMES: readonly string[];
50
50
  /** All quantakrypto MCP tools, in a stable order. */
51
51
  export declare const quantakryptoTools: ToolDefinition[];
52
52
  /** The core version these tools are built against (re-exported for diagnostics). */
53
- export declare const CORE_VERSION = "0.4.0";
53
+ export declare const CORE_VERSION = "0.4.1";
54
54
  /** Exposed for tests and advanced callers. */
55
55
  export declare const __test: {
56
56
  normalizeAlgorithm: typeof normalizeAlgorithm;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quantakrypto/mcp",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "quantakrypto MCP — post-quantum readiness for AI coding agents via the Model Context Protocol. Zero runtime dependencies (stdio JSON-RPC implemented in-house).",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Dandelion Labs <hello@dandelionlabs.io> (https://dandelionlabs.io)",
@@ -38,7 +38,7 @@
38
38
  "access": "public"
39
39
  },
40
40
  "dependencies": {
41
- "@quantakrypto/core": "0.4.0"
41
+ "@quantakrypto/core": "0.4.1"
42
42
  },
43
43
  "scripts": {
44
44
  "build": "tsc -b",