document-integrity-validator-mcp 1.0.5 → 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 +10 -0
- package/package.json +11 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
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
|
+
|
|
3
12
|
## [1.0.5] - 2026-06-04
|
|
4
13
|
|
|
5
14
|
### Added
|
|
@@ -51,3 +60,4 @@
|
|
|
51
60
|
- getEffectiveLimit() helper for accurate quota display after trial extension.
|
|
52
61
|
- Free tier warning at 8 calls used (2 remaining).
|
|
53
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",
|