{ "name": "@ruv/ruview-mcp", "version": "0.0.1", "description": "RuView MCP server — expose WiFi-DensePose sensing capabilities as MCP tools for Claude Code, Cursor, and other MCP-compatible agents", "private": true, "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "ruview-mcp": "dist/index.js" }, "files": [ "dist" ], "scripts": { "build": "tsc", "dev": "tsc --watch", "start": "node dist/index.js", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --forceExit", "lint": "eslint src --ext .ts", "typecheck": "tsc --noEmit" }, "keywords": [ "mcp", "ruview", "wifi", "csi", "pose-estimation", "cognitum" ], "author": "ruv ", "license": "Apache-2.0", "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "zod": "^3.23.8" }, "devDependencies": { "@types/jest": "^30.0.0", "@types/node": "^20.14.0", "jest": "^29.7.0", "ts-jest": "^29.1.0", "typescript": "^5.4.5" }, "engines": { "node": ">=20.0.0" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" } }