UNPKG

ez-mcp

Version:

A simple Model Context Protocol (MCP) server for executing command-line tools across different shell environments (WSL, PowerShell, CMD, Bash). Easy setup for Claude Desktop, GitHub Copilot, LM Studio, and Cursor.

56 lines (55 loc) 1.55 kB
{ "name": "ez-mcp", "version": "1.0.4", "description": "A simple Model Context Protocol (MCP) server for executing command-line tools across different shell environments (WSL, PowerShell, CMD, Bash). Easy setup for Claude Desktop, GitHub Copilot, LM Studio, and Cursor.", "main": "build/index.js", "type": "module", "bin": { "ez-mcp": "build/index.js" }, "files": [ "build/", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "dev": "npm run build && node build/index.js", "setup": "npm run build && node build/setup.js", "watch": "tsc -w", "test:security": "node test/security-patterns.test.js", "test:all": "node test/security-patterns.test.js && node test/shell-command-builder.test.js && node test/schema-validation.test.js && node test/mcp-tool-registration.test.js && node test/cross-platform.test.js && node test/setup-utility.test.js", "test": "npm run test:all" }, "keywords": [ "mcp", "model-context-protocol", "command-line", "cli", "shell", "wsl", "powershell", "bash", "claude", "copilot", "cursor", "lmstudio", "ai-tools", "automation" ], "author": "Chandan Gupta Bhagat", "repository": { "type": "git", "url": "git+https://github.com/thechandanbhagat/ez-mcp.git" }, "license": "MIT", "devDependencies": { "@types/node": "^24.2.0", "ts-node": "^10.9.2", "typescript": "^5.9.2" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.17.1", "zod": "^3.25.76" } }