ratchet-mcp 0.1.0 → 0.1.1

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 (1) hide show
  1. package/package.json +32 -11
package/package.json CHANGED
@@ -1,17 +1,38 @@
1
1
  {
2
2
  "name": "ratchet-mcp",
3
- "version": "0.1.0",
4
- "description": "MCP server for Ratchet — the effect gate for AI agents. Ask before you act, so the same side effect happens at most once.",
5
- "type": "module",
6
- "bin": { "ratchet-mcp": "bin/ratchet-mcp.mjs" },
7
- "files": ["bin", "README.md", "LICENSE"],
8
- "engines": { "node": ">=18" },
3
+ "mcpName": "com.ratchetgate/ratchet",
4
+ "version": "0.1.1",
5
+ "description": "MCP server for Ratchet \u2014 the effect gate for AI agents. Ask before you act, so the same side effect happens at most once.",
9
6
  "license": "Apache-2.0",
7
+ "homepage": "https://ratchetgate.com",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/thearchitect0x-glitch/ratchet.git",
11
+ "directory": "packages/ratchet-mcp"
12
+ },
13
+ "type": "module",
14
+ "bin": {
15
+ "ratchet-mcp": "bin/ratchet-mcp.mjs"
16
+ },
17
+ "files": [
18
+ "bin",
19
+ "README.md",
20
+ "LICENSE"
21
+ ],
22
+ "engines": {
23
+ "node": ">=18"
24
+ },
10
25
  "keywords": [
11
- "mcp", "model-context-protocol", "ai-agents", "idempotency",
12
- "at-most-once", "side-effects", "agent-infrastructure", "reliability"
26
+ "mcp",
27
+ "model-context-protocol",
28
+ "ai-agents",
29
+ "idempotency",
30
+ "at-most-once",
31
+ "side-effects",
32
+ "agent-infrastructure",
33
+ "reliability"
13
34
  ],
14
- "repository": { "type": "git", "url": "git+https://github.com/thearchitect0x-glitch/ratchet.git", "directory": "packages/ratchet-mcp" },
15
- "homepage": "https://ratchetgate.com",
16
- "publishConfig": { "access": "public" }
35
+ "publishConfig": {
36
+ "access": "public"
37
+ }
17
38
  }