quantum-suitability-validator-mcp 1.0.18 → 1.0.19

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.19] - 2026-06-25
4
+ - Task 1 audit (purpose verb + required fields): already correct on both tools -- ASSESS_DESCRIPTION/REPORT_DESCRIPTION already start with recognized verbs (Analyzes/Generates), and Zod input schemas (problem_description required on both; profile, current_classical_method, constraints_description also required on quantum_readiness_report) already produce a correct `required` array via the SDK's Zod-to-JSON-Schema conversion. No changes needed.
5
+ - feat: calls_remaining field added to both tool responses -- "unlimited" for quantum_readiness_report (paid-only) and for paid quantum_assess_problem callers, numeric free-tier headroom otherwise
6
+ - feat: verdict_ttl field added (7776000s/90 days on both tools -- hardware landscape moves slowly)
7
+ - feat: data_source_status field added (full/degraded/partial). Anthropic is the only external dependency and a failure currently aborts with no verdict (no degraded path exists in this architecture) -- so this server's successful responses always report "full"
8
+
3
9
  ## [1.0.18] - 2026-06-24
4
10
  - feat: unauthenticated /public-stats endpoint -- first_deployed, lifetime tool calls, uptime %, version, for agent orchestrators evaluating server trustworthiness
5
11
  - feat: /process-trial-followups endpoint + 24h follow-up record on trial-extension grant
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quantum-suitability-validator-mcp",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "Quantum computing suitability validator for AI agents. Screens problems for quantum advantage before budget allocation. QUANTUM/CLASSICAL verdict in one call.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",