Turn any CLI tool into an MCP server. Uses the --help to build MCP tools. Works with any CLI tool that has --help output. Build a cache first for better performance:
Add this skill
npx mdskills install eirikb/any-cli-mcp-serverDynamically converts CLI tools to MCP servers with clear setup but major security concerns
1# any-cli-mcp-server23[](https://badge.fury.io/js/any-cli-mcp-server)4[](https://github.com/eirikb/any-cli-mcp-server/actions/workflows/release.yml)5[](https://opensource.org/licenses/MIT)6[](https://www.typescriptlang.org/)7[](https://nodejs.org/)89Turn any CLI tool into an MCP server.1011Uses the `--help` to build MCP tools.1213Works with any CLI tool that has `--help` output.1415## Quick Start1617```bash18# Use with GitHub CLI19npx any-cli-mcp-server gh2021# Use with Azure CLI22npx any-cli-mcp-server az2324# Use with Git25npx any-cli-mcp-server git26```2728## Setup2930```json31{32 "mcpServers": {33 "github-cli": {34 "command": "npx",35 "args": ["-y", "any-cli-mcp-server", "gh"]36 },37 "azure-cli": {38 "command": "npx",39 "args": ["-y", "any-cli-mcp-server", "az"]40 },41 "git-from-cache": {42 "command": "npx",43 "args": ["-y", "any-cli-mcp-server", "git_cache.json"]44 }45 }46}47```4849## Faster Startup (Optional, but very recommended)5051Build a cache first for better performance:5253```bash54# Build cache55npx any-cli-mcp-server --cache-build gh5657# Use cache58npx any-cli-mcp-server gh_cache.json59```60
Full transparency — inspect the skill content before installing.