ccs-mcp-server 1.2.4 → 1.2.5
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/README.md +17 -1
- package/package.json +1 -1
- package/src/index.js +1 -1
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ npx -y ccs-mcp-server
|
|
|
25
25
|
}
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
Zero dependencies.
|
|
28
|
+
Zero dependencies. 44KB. Pure Node.js stdlib. No install scripts.
|
|
29
29
|
|
|
30
30
|
## Tools
|
|
31
31
|
|
|
@@ -111,6 +111,18 @@ evidence 4: denied (fs + curl exfil) parent: ev3
|
|
|
111
111
|
6. **Latency** — execution time budget
|
|
112
112
|
7. **Cost** — cost budget
|
|
113
113
|
|
|
114
|
+
## Interoperability
|
|
115
|
+
|
|
116
|
+
CCS receipts are Ed25519-signed, JSON-based, and verifiable offline with zero dependencies. If your project produces or verifies signed attestations, receipts, or evidence records, see **[INTEGRATION.md](INTEGRATION.md)** — a one-page guide covering:
|
|
117
|
+
|
|
118
|
+
- Full receipt field schema (22 fields)
|
|
119
|
+
- JCS canonicalization spec
|
|
120
|
+
- Three levels of interop (same crypto → cross-referenced chains → field-aligned)
|
|
121
|
+
- 30-second verification snippets (Node.js + Python)
|
|
122
|
+
- Clear scope boundaries (what CCS does / does not cover)
|
|
123
|
+
|
|
124
|
+
Join technical discussions in **[GitHub Discussions](https://github.com/DSHCorrectover/ccs-mcp-server/discussions)** — receipt interoperability, field mapping proposals, and protocol feedback welcome.
|
|
125
|
+
|
|
114
126
|
## Protocol Context
|
|
115
127
|
|
|
116
128
|
- **IETF**: [draft-correctover-ccs-06](https://datatracker.ietf.org/doc/draft-correctover-ccs/) (Experimental) — RT#55620 submitted
|
|
@@ -124,6 +136,7 @@ evidence 4: denied (fs + curl exfil) parent: ev3
|
|
|
124
136
|
| [ccs-demo](https://github.com/DSHCorrectover/ccs-demo) | Complete INSPECT→SIGN→VERIFY walkthrough — 6 scenarios, zero dependencies, `node demo.js` |
|
|
125
137
|
| [ccs-verifier-action](https://github.com/DSHCorrectover/ccs-verifier-action) | GitHub Action — verify CCS receipts in CI/CD pipelines |
|
|
126
138
|
| [ccs-mcp-server](https://github.com/DSHCorrectover/ccs-mcp-server) | Core MCP server (this repo) — runtime verification + evidence signing |
|
|
139
|
+
| [ccs-proxy](https://dshcorrectover.github.io/ccs-proxy/) | **Commercial** — inline enforcement proxy with L2 protocol attestation + L3 execution binding (Ed25519 signed receipts) |
|
|
127
140
|
|
|
128
141
|
## Links
|
|
129
142
|
|
|
@@ -133,6 +146,9 @@ evidence 4: denied (fs + curl exfil) parent: ev3
|
|
|
133
146
|
- PyPI (full verifier): https://pypi.org/project/ccs-verifier/
|
|
134
147
|
- Demo: https://github.com/DSHCorrectover/ccs-demo
|
|
135
148
|
- GitHub Action: https://github.com/DSHCorrectover/ccs-verifier-action
|
|
149
|
+
- Discussions: https://github.com/DSHCorrectover/ccs-mcp-server/discussions
|
|
150
|
+
- CCS Proxy (commercial): https://dshcorrectover.github.io/ccs-proxy/
|
|
151
|
+
- Integration Guide: [INTEGRATION.md](INTEGRATION.md)
|
|
136
152
|
|
|
137
153
|
## License
|
|
138
154
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccs-mcp-server",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5",
|
|
4
4
|
"description": "CCS Runtime Evidence MCP Server \u2014 7-dimension runtime verification for AI agent tool calls. Ed25519 receipts, sub-ms OOP, zero deps. For Claude Desktop, Cursor, Windsurf.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"bin": {
|
package/src/index.js
CHANGED
|
@@ -32,7 +32,7 @@ const receipts = require("./receipts");
|
|
|
32
32
|
// CCS Verifier Core (pure stdlib Node.js)
|
|
33
33
|
// ---------------------------------------------------------------------------
|
|
34
34
|
|
|
35
|
-
const CCS_VERSION = "1.2.
|
|
35
|
+
const CCS_VERSION = "1.2.5";
|
|
36
36
|
|
|
37
37
|
const DEFAULT_POLICY = {
|
|
38
38
|
mode: "block",
|