quantum-suitability-validator-mcp 1.0.4 → 1.0.7
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 +10 -0
- package/package.json +9 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.7] - 2026-06-08
|
|
4
|
+
- fix: BEFORE trigger language, consequence-first limit error
|
|
5
|
+
|
|
6
|
+
## [1.0.6] - 2026-06-05
|
|
7
|
+
- feat: Smithery optimisation - updated package.json description/keywords and smithery.yaml with system prompt
|
|
8
|
+
|
|
9
|
+
## [1.0.5] - 2026-06-04
|
|
10
|
+
- feat: /daily-report endpoint for consolidated daily summary
|
|
11
|
+
|
|
3
12
|
## [1.0.4] - 2026-06-04
|
|
4
13
|
|
|
5
14
|
### Added
|
|
@@ -38,3 +47,4 @@
|
|
|
38
47
|
- Stripe webhook integration for Pro key provisioning
|
|
39
48
|
- UptimeRobot-compatible /health endpoint (GET + HEAD)
|
|
40
49
|
- Anthropic Registry, Smithery, and npm published
|
|
50
|
+
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quantum-suitability-validator-mcp",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.7",
|
|
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",
|
|
7
7
|
"license": "MIT",
|
|
@@ -9,14 +9,15 @@
|
|
|
9
9
|
"mcpName": "io.github.OjasKord/quantum-suitability-validator-mcp-server",
|
|
10
10
|
"keywords": [
|
|
11
11
|
"mcp",
|
|
12
|
-
"agent",
|
|
13
12
|
"quantum-computing",
|
|
13
|
+
"quantum-advantage",
|
|
14
|
+
"qpu",
|
|
15
|
+
"optimization",
|
|
14
16
|
"quantum-triage",
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"quantum-readiness"
|
|
17
|
+
"computational-complexity",
|
|
18
|
+
"qubit",
|
|
19
|
+
"annealing",
|
|
20
|
+
"quantum-finance"
|
|
20
21
|
],
|
|
21
22
|
"scripts": {
|
|
22
23
|
"start": "node dist/index.js",
|