@fidacy/mcp 0.3.3 → 0.3.4

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
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Declare the MCP Registry identity that matches the product name: `mcpName` is now `com.fidacy/ai-agent-firewall`. The registry validates server ownership against this field, so the listing could not carry the commercial name until the package declared it. Nothing about installing or running the server changes.
8
+
3
9
  ## 0.3.3
4
10
 
5
11
  ### Minor Changes
package/dist/core.js CHANGED
@@ -485,7 +485,7 @@ function resolveMandateRules(cfg) {
485
485
  }
486
486
 
487
487
  // src/telemetry.ts
488
- var CLIENT_VERSION = true ? "0.3.3" : "dev";
488
+ var CLIENT_VERSION = true ? "0.3.4" : "dev";
489
489
  function bandOf(amount) {
490
490
  if (typeof amount !== "number" || !Number.isFinite(amount) || amount <= 0) return void 0;
491
491
  if (amount < 10) return "lt10";
package/dist/index.js CHANGED
@@ -517,7 +517,7 @@ function resolveMandateRules(cfg) {
517
517
  }
518
518
 
519
519
  // src/telemetry.ts
520
- var CLIENT_VERSION = true ? "0.3.3" : "dev";
520
+ var CLIENT_VERSION = true ? "0.3.4" : "dev";
521
521
  function bandOf(amount) {
522
522
  if (typeof amount !== "number" || !Number.isFinite(amount) || amount <= 0) return void 0;
523
523
  if (amount < 10) return "lt10";
@@ -879,7 +879,7 @@ async function findArtifacts(sha2562, cfg) {
879
879
  }
880
880
 
881
881
  // src/provision.ts
882
- var CLIENT_VERSION2 = true ? "0.3.3" : "dev";
882
+ var CLIENT_VERSION2 = true ? "0.3.4" : "dev";
883
883
  function provisionEnabled() {
884
884
  const v = (process.env.FIDACY_DISABLE_PROVISION ?? "").trim().toLowerCase();
885
885
  return !(v === "1" || v === "true" || v === "yes");
@@ -1312,7 +1312,7 @@ function renderAlertLine(alerts) {
1312
1312
  var state = ensureState();
1313
1313
  var core = makeCore();
1314
1314
  var subject = process.env.FIDACY_SUBJECT ?? "agent:demo";
1315
- var SERVER_VERSION = true ? "0.3.3" : "dev";
1315
+ var SERVER_VERSION = true ? "0.3.4" : "dev";
1316
1316
  var bootClaim = claimUrl();
1317
1317
  var server = new McpServer(
1318
1318
  // The commercial identity. `name` is the stable slug hosts key on; `title` is
package/dist/lib.js CHANGED
@@ -640,7 +640,7 @@ function resolveMandateRules(cfg) {
640
640
  }
641
641
 
642
642
  // src/telemetry.ts
643
- var CLIENT_VERSION = true ? "0.3.3" : "dev";
643
+ var CLIENT_VERSION = true ? "0.3.4" : "dev";
644
644
  function bandOf(amount) {
645
645
  if (typeof amount !== "number" || !Number.isFinite(amount) || amount <= 0) return void 0;
646
646
  if (amount < 10) return "lt10";
@@ -828,7 +828,7 @@ function requestUpgrade() {
828
828
  }
829
829
 
830
830
  // src/provision.ts
831
- var CLIENT_VERSION2 = true ? "0.3.3" : "dev";
831
+ var CLIENT_VERSION2 = true ? "0.3.4" : "dev";
832
832
  function provisionEnabled() {
833
833
  const v = (process.env.FIDACY_DISABLE_PROVISION ?? "").trim().toLowerCase();
834
834
  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.3.3",
3
+ "version": "0.3.4",
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
  "author": "Fidacy (ZeepCode Group Technology LLC) <hello@fidacy.com> (https://fidacy.com)",
@@ -64,7 +64,7 @@
64
64
  "vitest": "^3.2.4",
65
65
  "@fidacy/firewall": "0.1.1"
66
66
  },
67
- "mcpName": "com.fidacy/mcp",
67
+ "mcpName": "com.fidacy/ai-agent-firewall",
68
68
  "repository": {
69
69
  "type": "git",
70
70
  "url": "git+https://github.com/lucaslubi/fidacy-mcp.git"