package.json•829 B
{
"name": "mcp-cli-wrapper",
"version": "1.0.0",
"description": "Flexible MCP server that wraps any CLI tool with configurable subcommand tools",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-cli-wrapper": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"keywords": ["mcp", "cli", "wrapper", "model-context-protocol"],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"ts-node": "^10.9.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"config.example.json"
]
}