ccs-mcp-server 1.2.14 → 1.2.15
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/package.json +20 -10
- package/src/index.js +2 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccs-mcp-server",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.2.15",
|
|
4
|
+
"description": "MCP security server for AI agents — runtime verification and receipt verification for Claude Code, Cursor, Cline and Windsurf. 7-dimension CCS checks, Ed25519 tamper-evident receipts, offline verification, zero runtime dependencies.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"bin": {
|
|
7
7
|
"ccs-mcp-server": "src/index.js"
|
|
@@ -17,17 +17,27 @@
|
|
|
17
17
|
"model-context-protocol",
|
|
18
18
|
"mcp-server",
|
|
19
19
|
"mcp-security",
|
|
20
|
+
"claude",
|
|
21
|
+
"claude-code",
|
|
22
|
+
"cursor",
|
|
23
|
+
"cline",
|
|
24
|
+
"windsurf",
|
|
25
|
+
"ai-agent",
|
|
20
26
|
"ai-agent-security",
|
|
27
|
+
"agent-security",
|
|
21
28
|
"runtime-verification",
|
|
29
|
+
"receipt-verification",
|
|
30
|
+
"agent-receipt",
|
|
31
|
+
"ed25519",
|
|
32
|
+
"tamper-evident",
|
|
33
|
+
"offline-verification",
|
|
34
|
+
"tool-call-guardrail",
|
|
35
|
+
"mcp security audit",
|
|
22
36
|
"ccs",
|
|
23
37
|
"correctover",
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"supply-chain-security",
|
|
28
|
-
"agent-security",
|
|
29
|
-
"security",
|
|
30
|
-
"developer-tools"
|
|
38
|
+
"decision-provenance",
|
|
39
|
+
"json-rpc",
|
|
40
|
+
"supply-chain-security"
|
|
31
41
|
],
|
|
32
42
|
"license": "Elastic-2.0",
|
|
33
43
|
"repository": {
|
|
@@ -51,4 +61,4 @@
|
|
|
51
61
|
"description": "Verify AI agent tool calls and issue Ed25519-signed CCS evidence receipts."
|
|
52
62
|
},
|
|
53
63
|
"mcpName": "io.github.DSHCorrectover/ccs-mcp-server"
|
|
54
|
-
}
|
|
64
|
+
}
|
package/src/index.js
CHANGED
|
@@ -32,7 +32,8 @@ const receipts = require("./receipts");
|
|
|
32
32
|
// CCS Verifier Core (pure stdlib Node.js)
|
|
33
33
|
// ---------------------------------------------------------------------------
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
// Read from package.json so the reported version can never drift from the published one.
|
|
36
|
+
const CCS_VERSION = require("../package.json").version;
|
|
36
37
|
|
|
37
38
|
const DEFAULT_POLICY = {
|
|
38
39
|
mode: "block",
|