Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
Windows CLI MCP Server
Claim
by
SimonB97
npm
GitHub
OS Automation
File Systems
Developer Tools
JavaScript
MIT License
219
58
Reddit
Discord
Overview
Inspect
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
src
tests
config.sample.json
Dockerfile
.gitignore
jest.config.js
LICENSE
package.json
package-lock.json
README.md
smithery.yaml
tsconfig.json
{ "name": "@simonb97/server-win-cli", "version": "0.2.0", "description": "MCP server for Windows CLI interactions", "type": "module", "bin": { "server-win-cli": "./dist/index.js" }, "files": [ "dist" ], "license": "MIT", "author": "Simon Benedict", "homepage": "https://github.com/SimonB97/win-cli-mcp-server", "repository": { "type": "git", "url": "git+https://github.com/SimonB97/win-cli-mcp-server.git" }, "bugs": { "url": "https://github.com/SimonB97/win-cli-mcp-server/issues" }, "keywords": [ "mcp", "claude", "cli", "windows", "modelcontextprotocol", "mcp-server", "ssh" ], "engines": { "node": ">=18.0.0" }, "scripts": { "build": "tsc && shx chmod +x dist/index.js", "prepare": "npm run build", "watch": "tsc --watch", "start": "node dist/index.js", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", "test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch", "test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage" }, "dependencies": { "@modelcontextprotocol/sdk": "1.0.1", "@types/ssh2": "^1.15.1", "ssh2": "^1.16.0", "yargs": "^17.7.2", "zod": "^3.22.4" }, "devDependencies": { "@jest/globals": "^29.7.0", "@types/jest": "^29.5.11", "@types/node": "^20.11.0", "@types/yargs": "^17.0.33", "jest": "^29.7.0", "shx": "^0.3.4", "ts-jest": "^29.1.1", "typescript": "^5.3.3" } }