@getripple/mcp 1.0.10 → 1.0.11

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,8 +1,15 @@
1
1
  # @getripple/mcp Changelog
2
2
 
3
+ ## [1.0.10] - 2026-07-06
4
+
5
+ ### Changed
6
+
7
+ - Update package metadata to depend on `@getripple/core@^1.0.10` to align with the `1.0.10` release.
8
+
3
9
  ## [1.0.9] - 2026-06-13
4
10
 
5
11
  ### Changed
12
+
6
13
  - Reframe the MCP package as the agent-facing wire for Ripple's local authorization gate.
7
14
  - Add `ripple_record_verification` to the documented agent workflow so agents record test or verification evidence before the final gate.
8
15
  - Update package metadata to depend on `@getripple/core@^1.0.9`.
@@ -10,30 +17,36 @@
10
17
  ## [1.0.8] - 2026-06-09
11
18
 
12
19
  ### Validation
20
+
13
21
  - Manually validated MCP-backed agent workflows against a real `sindresorhus/ky` clone through planning, gate checks, repair handoff, policy-based human approval, and CI-style blocking.
14
22
 
15
23
  ### Fixed
24
+
16
25
  - Consume the core history fix so MCP scans preserve architectural history after cached graph refreshes.
17
26
 
18
27
  ## [1.0.7] - 2026-06-08
19
28
 
20
29
  ### Added
30
+
21
31
  - Return evidence-backed risk summaries through MCP gate responses.
22
32
  - Add MCP contract coverage for gate risk level, score, reasons, evidence, and required actions.
23
33
  - Expose the same continue/repair/human-review language used by CLI and CI.
24
34
 
25
35
  ### Changed
36
+
26
37
  - Make MCP gate responses easier for AI agents to obey by pairing each stop decision with concrete repair or human-review instructions.
27
38
 
28
39
  ## [1.0.6] - 2026-06-07
29
40
 
30
41
  ### Fixed
42
+
31
43
  - Silence scan/cache `console.log` output in the MCP stdio server so agent clients receive clean protocol output.
32
44
  - Depend on the `1.0.6` core engine for clearer Git readiness diagnostics.
33
45
 
34
46
  ## [1.0.5] - 2026-06-04
35
47
 
36
48
  ### Changed
49
+
37
50
  - Refresh package README wording for npm users configuring AI agents.
38
51
  - Lead with the MCP config snippet and the before-edit / after-edit / gate / repair workflow.
39
52
  - Clarify stdio protocol behavior and local privacy posture.
@@ -41,6 +54,7 @@
41
54
  ## [1.0.4] - 2026-06-03
42
55
 
43
56
  ### Fixed
57
+
44
58
  - Executable entry point for the `ripple-mcp` binary.
45
59
  - Publishable package identity under `@getripple/mcp`.
46
60
  - Release readiness checks for packed MCP installs and stdio gate behavior.
@@ -49,9 +63,11 @@
49
63
  ## [1.0.3] - 2026-06-03
50
64
 
51
65
  ### Added
66
+
52
67
  - Initial release of Ripple's MCP stdio server.
53
68
  - Agent tools for workflow handshake, context planning, staged/changed checks, audit, gate, approval status, repair, focus, blast radius, policy explanation, and recent changes.
54
69
  - Structured continue/stop gate responses for MCP-compatible AI coding agents.
55
70
 
56
71
  ### Notes
72
+
57
73
  - Public alpha. Agents should treat Ripple's output as local workflow evidence, not as a replacement for tests or human review.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getripple/mcp",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "MCP stdio server for Ripple's local authorization gate for AI coding agents.",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",
@@ -45,7 +45,7 @@
45
45
  "build": "tsc -p tsconfig.json"
46
46
  },
47
47
  "dependencies": {
48
- "@getripple/core": "^1.0.10"
48
+ "@getripple/core": "^1.0.11"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@types/node": "^18.0.0",