{ "name": "tunnel-mcp", "mcpName": "io.github.zachlikefolio/tunnel-mcp", "version": "0.3.0", "description": "Direct end-to-end-encrypted tunnel between Claude agents — two-party or a room of up to 16.", "type": "module", "bin": { "tunnel-mcp": "dist/index.js" }, "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "skill", "postinstall.mjs", "README.md", "LICENSE", "CHANGELOG.md", "SECURITY.md" ], "engines": { "node": ">=20" }, "scripts": { "build": "tsc", "test": "vitest run", "test:coverage": "vitest run --coverage", "typecheck": "tsc --noEmit", "lint": "eslint .", "format": "prettier --write .", "format:check": "prettier --check .", "dev": "tsx src/index.ts", "e2e": "tsx scripts/e2e-two-agents.ts", "demo": "tsx scripts/demo.ts", "smoke:room": "tsx scripts/room-smoke.ts", "smoke:artifact": "tsx scripts/artifact-smoke.ts", "postinstall": "node postinstall.mjs", "prepublishOnly": "npm run build" }, "keywords": [ "mcp", "model-context-protocol", "claude", "claude-code", "ai-agents", "agent-to-agent", "cloudflare-tunnel", "e2e-encryption", "websocket", "llm" ], "author": "zachlikefolio (https://github.com/zachlikefolio)", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/zachlikefolio/tunnel-mcp.git" }, "bugs": { "url": "https://github.com/zachlikefolio/tunnel-mcp/issues" }, "homepage": "https://github.com/zachlikefolio/tunnel-mcp#readme", "publishConfig": { "access": "public" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "tweetnacl": "^1.0.3", "ws": "^8.18.0", "zod": "^4.4.3" }, "devDependencies": { "@anthropic-ai/sdk": "^0.109.0", "@types/node": "^26.1.0", "@types/ws": "^8.5.10", "@vitest/coverage-v8": "^4.1.9", "eslint": "^10.6.0", "fast-check": "^4.8.0", "prettier": "^3.3.0", "tsx": "^4.16.0", "typescript": "^6.0.3", "typescript-eslint": "^8.0.0", "vitest": "^4.1.9" } }