tunnel-mcp 0.1.7 → 0.1.8

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 (3) hide show
  1. package/CHANGELOG.md +10 -1
  2. package/README.md +13 -0
  3. package/package.json +6 -4
package/CHANGELOG.md CHANGED
@@ -11,6 +11,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
 
12
12
  - Nothing yet.
13
13
 
14
+ ## [0.1.8] - 2026-07-02
15
+
16
+ ### Added
17
+
18
+ - `mcpName` (`io.github.zachlikefolio/tunnel-mcp`) in `package.json`, the
19
+ ownership-verification field required to list the server in the official
20
+ MCP Registry (registry.modelcontextprotocol.io). No functional changes.
21
+
14
22
  ## [0.1.7] - 2026-07-01
15
23
 
16
24
  ### Security
@@ -163,7 +171,8 @@ install-skill` copies the `tunnel-etiquette` skill into `~/.claude/skills`
163
171
  declaring a fix "confirmed".
164
172
  - Test suite of 109 tests built with vitest, developed test-first (TDD).
165
173
 
166
- [Unreleased]: https://github.com/zachlikefolio/tunnel-mcp/compare/v0.1.7...HEAD
174
+ [Unreleased]: https://github.com/zachlikefolio/tunnel-mcp/compare/v0.1.8...HEAD
175
+ [0.1.8]: https://github.com/zachlikefolio/tunnel-mcp/compare/v0.1.7...v0.1.8
167
176
  [0.1.7]: https://github.com/zachlikefolio/tunnel-mcp/compare/v0.1.6...v0.1.7
168
177
  [0.1.6]: https://github.com/zachlikefolio/tunnel-mcp/compare/v0.1.5...v0.1.6
169
178
  [0.1.5]: https://github.com/zachlikefolio/tunnel-mcp/compare/v0.1.4...v0.1.5
package/README.md CHANGED
@@ -4,8 +4,21 @@
4
4
 
5
5
  [![CI](https://github.com/zachlikefolio/tunnel-mcp/actions/workflows/ci.yml/badge.svg)](https://github.com/zachlikefolio/tunnel-mcp/actions/workflows/ci.yml)
6
6
  [![npm version](https://img.shields.io/npm/v/tunnel-mcp)](https://www.npmjs.com/package/tunnel-mcp)
7
+ [![npm downloads](https://img.shields.io/npm/dm/tunnel-mcp)](https://www.npmjs.com/package/tunnel-mcp)
7
8
  ![node](https://img.shields.io/badge/node-%3E%3D20-brightgreen)
8
9
 
10
+ ![tunnel-mcp demo — two agents talking through a real encrypted tunnel](docs/demo.gif)
11
+
12
+ **Reproduce that yourself in 30 seconds** — clone the repo and:
13
+
14
+ ```bash
15
+ npm ci && npm run demo
16
+ ```
17
+
18
+ That opens a real encrypted tunnel through Cloudflare's edge, joins it as a
19
+ guest, exchanges end-to-end-encrypted messages, proves the join link is
20
+ single-use, and tears everything down.
21
+
9
22
  When two developers each run a Claude agent and need those agents to collaborate,
10
23
  the usual workaround is a human sitting in the middle, copy-pasting messages from
11
24
  one chat window to the other. **tunnel-mcp** removes that human. It's an MCP
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "tunnel-mcp",
3
- "version": "0.1.7",
3
+ "mcpName": "io.github.zachlikefolio/tunnel-mcp",
4
+ "version": "0.1.8",
4
5
  "description": "Let two developers' Claude agents talk directly through an ephemeral, end-to-end-encrypted tunnel.",
5
6
  "type": "module",
6
7
  "bin": {
@@ -30,6 +31,7 @@
30
31
  "format:check": "prettier --check .",
31
32
  "dev": "tsx src/index.ts",
32
33
  "e2e": "tsx scripts/e2e-two-agents.ts",
34
+ "demo": "tsx scripts/demo.ts",
33
35
  "postinstall": "node postinstall.mjs",
34
36
  "prepublishOnly": "npm run build"
35
37
  },
@@ -66,14 +68,14 @@
66
68
  },
67
69
  "devDependencies": {
68
70
  "@anthropic-ai/sdk": "^0.109.0",
69
- "@types/node": "^20.14.0",
71
+ "@types/node": "^26.1.0",
70
72
  "@types/ws": "^8.5.10",
71
73
  "@vitest/coverage-v8": "^4.1.9",
72
- "eslint": "^9.9.0",
74
+ "eslint": "^10.6.0",
73
75
  "fast-check": "^4.8.0",
74
76
  "prettier": "^3.3.0",
75
77
  "tsx": "^4.16.0",
76
- "typescript": "^5.5.0",
78
+ "typescript": "^6.0.3",
77
79
  "typescript-eslint": "^8.0.0",
78
80
  "vitest": "^4.1.9"
79
81
  }