document-integrity-validator-mcp 1.0.4 → 1.0.8
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 +11 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.8] - 2026-06-08
|
|
4
|
+
- fix: BEFORE trigger language, consequence-first limit error
|
|
5
|
+
|
|
6
|
+
## [1.0.7] - 2026-06-05
|
|
7
|
+
- feat: Smithery optimisation - updated package.json description/keywords and smithery.yaml with system prompt
|
|
8
|
+
|
|
9
|
+
## [1.0.6] - 2026-06-04
|
|
10
|
+
- feat: /daily-report endpoint for consolidated daily summary
|
|
11
|
+
|
|
12
|
+
## [1.0.5] - 2026-06-04
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- `src/services/redis.ts` — Upstash Redis helpers (redisGet, redisSet, redisExpire, redisKeys, appendSessionLog) with prefix `docintegrity`
|
|
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` (from check.ts) now used in `_upgrade_notice` warning string
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
- `check_document` and `check_document_package` descriptions rewritten for orchestral agent runtime selection
|
|
24
|
+
- `VERSION` bumped to `1.0.5`
|
|
25
|
+
|
|
3
26
|
## [1.0.4] - 2026-06-02
|
|
4
27
|
|
|
5
28
|
### Fixed
|
|
@@ -37,3 +60,4 @@
|
|
|
37
60
|
- getEffectiveLimit() helper for accurate quota display after trial extension.
|
|
38
61
|
- Free tier warning at 8 calls used (2 remaining).
|
|
39
62
|
- checkAccess() runs only inside tools/call branch -- never on tools/list or initialize.
|
|
63
|
+
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "document-integrity-validator-mcp",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.8",
|
|
4
|
+
"description": "Document integrity validator for AI agents. Verifies authenticity against international standards before acting on contents. PASS/FAIL verdict in one call.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"license": "UNLICENSED",
|
|
@@ -9,13 +9,16 @@
|
|
|
9
9
|
"mcpName": "io.github.OjasKord/document-integrity-validator-mcp",
|
|
10
10
|
"keywords": [
|
|
11
11
|
"mcp",
|
|
12
|
-
"
|
|
13
|
-
"document",
|
|
14
|
-
"
|
|
15
|
-
"integrity",
|
|
16
|
-
"compliance",
|
|
12
|
+
"document-verification",
|
|
13
|
+
"document-integrity",
|
|
14
|
+
"trade-finance",
|
|
17
15
|
"kyc",
|
|
18
|
-
"
|
|
16
|
+
"invoice-fraud",
|
|
17
|
+
"bill-of-lading",
|
|
18
|
+
"letter-of-credit",
|
|
19
|
+
"icao",
|
|
20
|
+
"document-forgery",
|
|
21
|
+
"compliance"
|
|
19
22
|
],
|
|
20
23
|
"scripts": {
|
|
21
24
|
"start": "node dist/index.js",
|