@fidacy/mcp 0.1.15 → 0.1.16

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/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
3
3
  All notable changes to `@fidacy/mcp` are documented here. This project follows
4
4
  semantic versioning.
5
5
 
6
+ ## 0.1.16 — 2026-07-03
7
+
8
+ - `anchor_artifact`/`check_artifact`: new kind `conversation` — anchor chatbot
9
+ session digests produced by `@fidacy/session` (conversation receipts).
10
+
11
+ ## 0.1.15 — 2026-07-03
12
+
13
+ - New tools: `anchor_artifact` and `check_artifact` — Bitcoin-anchored integrity
14
+ proof for any artifact (contracts, invoices, prescriptions, claims, images,
15
+ audio, video). The file is hashed locally and never uploaded; only the SHA-256
16
+ joins the tamper-evident audit chain. Signed JWS receipt verifies offline.
17
+
6
18
  ## 0.1.4
7
19
 
8
20
  ### Fixed
package/dist/core.js CHANGED
@@ -423,7 +423,7 @@ function resolveMandateRules(cfg) {
423
423
  }
424
424
 
425
425
  // src/telemetry.ts
426
- var CLIENT_VERSION = true ? "0.1.15" : "dev";
426
+ var CLIENT_VERSION = true ? "0.1.16" : "dev";
427
427
  var currentShell = "mcp";
428
428
  function telemetryEnabled() {
429
429
  const v = (process.env.FIDACY_DISABLE_TELEMETRY ?? "").trim().toLowerCase();
package/dist/index.js CHANGED
@@ -452,7 +452,7 @@ function resolveMandateRules(cfg) {
452
452
  }
453
453
 
454
454
  // src/telemetry.ts
455
- var CLIENT_VERSION = true ? "0.1.15" : "dev";
455
+ var CLIENT_VERSION = true ? "0.1.16" : "dev";
456
456
  var currentShell = "mcp";
457
457
  function telemetryEnabled() {
458
458
  const v = (process.env.FIDACY_DISABLE_TELEMETRY ?? "").trim().toLowerCase();
@@ -693,6 +693,7 @@ var ARTIFACT_KINDS = [
693
693
  "image",
694
694
  "audio",
695
695
  "video",
696
+ "conversation",
696
697
  "custom"
697
698
  ];
698
699
  async function hashFile(path) {
@@ -745,7 +746,7 @@ async function findArtifacts(sha2562, cfg) {
745
746
  }
746
747
 
747
748
  // src/provision.ts
748
- var CLIENT_VERSION2 = true ? "0.1.15" : "dev";
749
+ var CLIENT_VERSION2 = true ? "0.1.16" : "dev";
749
750
  function provisionEnabled() {
750
751
  const v = (process.env.FIDACY_DISABLE_PROVISION ?? "").trim().toLowerCase();
751
752
  return !(v === "1" || v === "true" || v === "yes");
@@ -845,7 +846,7 @@ function weekOneBootNudge(upgradeToolName) {
845
846
  var state = ensureState();
846
847
  var core = makeCore();
847
848
  var subject = process.env.FIDACY_SUBJECT ?? "agent:demo";
848
- var SERVER_VERSION = true ? "0.1.15" : "dev";
849
+ var SERVER_VERSION = true ? "0.1.16" : "dev";
849
850
  var server = new McpServer({ name: "fidacy", version: SERVER_VERSION });
850
851
  server.registerTool(
851
852
  "request_payment",
package/dist/lib.js CHANGED
@@ -571,7 +571,7 @@ function resolveMandateRules(cfg) {
571
571
  }
572
572
 
573
573
  // src/telemetry.ts
574
- var CLIENT_VERSION = true ? "0.1.15" : "dev";
574
+ var CLIENT_VERSION = true ? "0.1.16" : "dev";
575
575
  var currentShell = "mcp";
576
576
  function setTelemetryShell(shell) {
577
577
  currentShell = shell;
@@ -699,7 +699,7 @@ function requestUpgrade() {
699
699
  }
700
700
 
701
701
  // src/provision.ts
702
- var CLIENT_VERSION2 = true ? "0.1.15" : "dev";
702
+ var CLIENT_VERSION2 = true ? "0.1.16" : "dev";
703
703
  function provisionEnabled() {
704
704
  const v = (process.env.FIDACY_DISABLE_PROVISION ?? "").trim().toLowerCase();
705
705
  return !(v === "1" || v === "true" || v === "yes");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fidacy/mcp",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "Fidacy action firewall for AI agents. Mandate-gated payment authorization as an MCP server.",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://fidacy.com",