quantum-suitability-validator-mcp 1.0.3 → 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 +24 -0
- package/package.json +9 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
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
|
+
|
|
12
|
+
## [1.0.4] - 2026-06-04
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- `src/services/redis.ts` — Upstash Redis helpers (redisGet, redisSet, redisExpire, redisKeys, appendSessionLog) with prefix `quantum`
|
|
16
|
+
- Free tier Redis persistence: `loadFreeTierFromRedis` / `saveFreeTierToRedis` with Math.max merge
|
|
17
|
+
- API key Redis persistence: `saveKeyToRedis` / `loadApiKeysFromRedis` — first durable persistence for paid keys
|
|
18
|
+
- `appendSessionLog` with 24h TTL; `/session-log` endpoint (requires x-stats-key)
|
|
19
|
+
- `free_tier_breakdown` per-IP object on `/stats` response for current month
|
|
20
|
+
- `getEffectiveLimit(ip)` — accounts for trial extensions in stats.trial_extensions
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
- `quantum_assess_problem` and `quantum_readiness_report` descriptions rewritten for orchestral agent runtime selection
|
|
24
|
+
- `VERSION` bumped to `1.0.4`
|
|
25
|
+
|
|
3
26
|
## [1.0.3] - 2026-06-02
|
|
4
27
|
|
|
5
28
|
### Fixed
|
|
@@ -24,3 +47,4 @@
|
|
|
24
47
|
- Stripe webhook integration for Pro key provisioning
|
|
25
48
|
- UptimeRobot-compatible /health endpoint (GET + HEAD)
|
|
26
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",
|