ccs-mcp-server 1.2.2 → 1.2.4
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/LICENSE +0 -0
- package/README.md +12 -2
- package/package.json +9 -6
- package/src/index.js +0 -0
- package/src/receipts.js +0 -0
package/LICENSE
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
@@ -117,13 +117,23 @@ evidence 4: denied (fs + curl exfil) parent: ev3
|
|
|
117
117
|
- **Complements**: [VAP draft-samal-vap-00](https://datatracker.ietf.org/doc/draft-samal-vap/) (scope/budget/purpose), [Microsoft ACS](https://github.com/microsoft/agent-governance-toolkit) (policy decisions), AP2 (human authorization)
|
|
118
118
|
- **Does not replace**: authentication, payment networks, policy engines
|
|
119
119
|
|
|
120
|
+
## Ecosystem
|
|
121
|
+
|
|
122
|
+
| Project | What it does |
|
|
123
|
+
|---------|-------------|
|
|
124
|
+
| [ccs-demo](https://github.com/DSHCorrectover/ccs-demo) | Complete INSPECT→SIGN→VERIFY walkthrough — 6 scenarios, zero dependencies, `node demo.js` |
|
|
125
|
+
| [ccs-verifier-action](https://github.com/DSHCorrectover/ccs-verifier-action) | GitHub Action — verify CCS receipts in CI/CD pipelines |
|
|
126
|
+
| [ccs-mcp-server](https://github.com/DSHCorrectover/ccs-mcp-server) | Core MCP server (this repo) — runtime verification + evidence signing |
|
|
127
|
+
|
|
120
128
|
## Links
|
|
121
129
|
|
|
122
130
|
- npm: https://www.npmjs.com/package/ccs-mcp-server
|
|
123
|
-
- GitHub: https://github.com/
|
|
131
|
+
- GitHub: https://github.com/DSHCorrectover/ccs-mcp-server
|
|
124
132
|
- IETF Draft: https://datatracker.ietf.org/doc/draft-correctover-ccs/
|
|
125
133
|
- PyPI (full verifier): https://pypi.org/project/ccs-verifier/
|
|
134
|
+
- Demo: https://github.com/DSHCorrectover/ccs-demo
|
|
135
|
+
- GitHub Action: https://github.com/DSHCorrectover/ccs-verifier-action
|
|
126
136
|
|
|
127
137
|
## License
|
|
128
138
|
|
|
129
|
-
|
|
139
|
+
[Elastic License 2.0 (ELv2)](LICENSE) — see the full terms. Reference implementation for CCS standard evaluation.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccs-mcp-server",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"description": "CCS Runtime Evidence MCP Server
|
|
3
|
+
"version": "1.2.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": {
|
|
7
7
|
"ccs-mcp-server": "src/index.js"
|
|
@@ -29,12 +29,15 @@
|
|
|
29
29
|
"security",
|
|
30
30
|
"developer-tools"
|
|
31
31
|
],
|
|
32
|
-
"license": "
|
|
32
|
+
"license": "Elastic-2.0",
|
|
33
33
|
"repository": {
|
|
34
34
|
"type": "git",
|
|
35
|
-
"url": "git+https://github.com/
|
|
35
|
+
"url": "git+https://github.com/DSHCorrectover/ccs-mcp-server.git"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://github.com/DSHCorrectover/ccs-mcp-server#readme",
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/DSHCorrectover/ccs-mcp-server/issues"
|
|
36
40
|
},
|
|
37
|
-
"homepage": "https://correctover.com",
|
|
38
41
|
"engines": {
|
|
39
42
|
"node": ">=18"
|
|
40
43
|
},
|
|
@@ -45,6 +48,6 @@
|
|
|
45
48
|
"mcp": {
|
|
46
49
|
"name": "ccs-runtime-evidence",
|
|
47
50
|
"displayName": "CCS Runtime Evidence",
|
|
48
|
-
"description": "Verify AI agent tool calls and issue Ed25519-signed CCS evidence receipts.
|
|
51
|
+
"description": "Verify AI agent tool calls and issue Ed25519-signed CCS evidence receipts."
|
|
49
52
|
}
|
|
50
53
|
}
|
package/src/index.js
CHANGED
|
File without changes
|
package/src/receipts.js
CHANGED
|
File without changes
|