UNPKG

otak-mcp-shell

Version:

Windows PowerShell MCP server with system directory protection and SSE/HTTP streaming support

68 lines (67 loc) 2.23 kB
{ "name": "otak-mcp-shell", "version": "2.1.0", "description": "Windows PowerShell MCP server with system directory protection and SSE/HTTP streaming support", "main": "dist/index.js", "bin": { "otak-mcp-shell": "./dist/index.js", "otak-mcp-shell-http": "./dist/http-server.js", "otak-mcp-shell-mcp": "./dist/mcp-http-server.js", "otak-mcp-shell-service": "./scripts/service-manager.js" }, "files": [ "dist/**/*", "scripts/**/*", "README.md" ], "repository": { "type": "git", "url": "https://github.com/tsuyoshi-otake/otak-mcp-shell.git" }, "homepage": "https://github.com/tsuyoshi-otake/otak-mcp-shell#readme", "bugs": { "url": "https://github.com/tsuyoshi-otake/otak-mcp-shell/issues" }, "scripts": { "dev": "nodemon --exec tsx src/index.ts", "dev:http": "nodemon --exec tsx src/http-server.ts", "dev:mcp": "nodemon --exec tsx src/mcp-http-server.ts", "build": "tsc", "start": "node dist/index.js", "start:http": "node dist/http-server.js", "start:mcp": "node dist/mcp-http-server.js", "test": "echo \"Error: no test specified\" && exit 1", "prepublishOnly": "npm run build", "service:install": "node scripts/install-service.js", "service:uninstall": "node scripts/uninstall-service.js", "service:install:http": "node scripts/install-service.js '{\"serverType\": \"http\", \"serviceName\": \"OtakMCPShellHTTP\", \"displayName\": \"Otak MCP Shell HTTP Server\"}'", "service:install:mcp": "node scripts/install-service.js '{\"serverType\": \"mcp\", \"serviceName\": \"OtakMCPShellMCP\", \"displayName\": \"Otak MCP Shell MCP Server\"}'" }, "keywords": [ "mcp", "model-context-protocol", "windows", "powershell", "command-execution", "sse", "streaming" ], "author": "Tsuyoshi Otake", "license": "MIT", "type": "commonjs", "dependencies": { "@modelcontextprotocol/sdk": "^1.15.1", "dotenv": "^17.2.0", "express": "^5.1.0" }, "optionalDependencies": { "node-windows": "^1.0.0-beta.8" }, "devDependencies": { "@types/express": "^5.0.3", "@types/node": "^24.0.14", "nodemon": "^3.1.10", "tsx": "^4.20.3", "typescript": "^5.8.3" } }