ratchet-mcp 0.2.1 → 0.3.0

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 CHANGED
@@ -1,5 +1,10 @@
1
1
  # ratchet-mcp
2
2
 
3
+ [![OpenSSF Best Practices](https://www.bestpractices.dev/projects/14440/badge)](https://www.bestpractices.dev/projects/14440)
4
+ [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/thearchitect0x-glitch/ratchet/badge)](https://scorecard.dev/viewer/?uri=github.com/thearchitect0x-glitch/ratchet)
5
+ [![CI](https://github.com/thearchitect0x-glitch/ratchet/actions/workflows/ci.yml/badge.svg)](https://github.com/thearchitect0x-glitch/ratchet/actions/workflows/ci.yml)
6
+ [![License](https://img.shields.io/badge/license-Apache--2.0-blue)](https://github.com/thearchitect0x-glitch/ratchet/blob/main/LICENSE)
7
+
3
8
  MCP server for [Ratchet](https://ratchetgate.com) — an effect gate for AI agents.
4
9
 
5
10
  Agents retry. LLM control flow is non-deterministic, network calls fail ambiguously, and processes
@@ -26,6 +31,11 @@ Put the key in `env`, never in `args` — arguments are visible in process listi
26
31
 
27
32
  Works with Claude Desktop, Claude Code, Cursor, and any MCP client that spawns a stdio server.
28
33
 
34
+ **Runs on macOS, Linux, Windows and BSD** — anywhere Node 18+ runs. The bridge is a single
35
+ dependency-free file with no native modules, no shell-outs and no platform-specific paths, so there
36
+ is nothing to compile and nothing that behaves differently between operating systems. Ratchet
37
+ itself is a hosted service, so the gate is never something you install or operate.
38
+
29
39
  ## Tools
30
40
 
31
41
  | Tool | What it does |
@@ -1,4 +1,6 @@
1
1
  #!/usr/bin/env node
2
+ // SPDX-License-Identifier: Apache-2.0
3
+ // Copyright 2026 Deimos AI LLC
2
4
  /**
3
5
  * Ratchet MCP server (stdio transport).
4
6
  *
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ratchet-mcp",
3
3
  "mcpName": "com.ratchetgate/ratchet",
4
- "version": "0.2.1",
4
+ "version": "0.3.0",
5
5
  "description": "MCP server for Ratchet. Your agent asks before it charges, deploys, publishes or sends \u2014 the same action is attempted at most once.",
6
6
  "license": "Apache-2.0",
7
7
  "homepage": "https://ratchetgate.com",