eirikb/any-cli-mcp-server
0 Views
0 Installs
📇 🏠 - Universal MCP server that transforms any CLI tool into an MCP server. Works with any CLI that has --help output, supports caching for performance.
Quick Install
One-Click IDE Configuration
claude_desktop_config.json
{
"mcpServers": {
"eirikb-any-cli-mcp-server": {
"command": "npx",
"args": [
"-y",
"eirikb-any-cli-mcp-server"
]
}
}
}Or
Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.
Documentation Overview
any-cli-mcp-server
Turn any CLI tool into an MCP server.
Uses the --help to build MCP tools.
Works with any CLI tool that has --help output.
Quick Start
# Use with GitHub CLI
npx any-cli-mcp-server gh
# Use with Azure CLI
npx any-cli-mcp-server az
# Use with Git
npx any-cli-mcp-server git
Setup
{
"mcpServers": {
"github-cli": {
"command": "npx",
"args": ["-y", "any-cli-mcp-server", "gh"]
},
"azure-cli": {
"command": "npx",
"args": ["-y", "any-cli-mcp-server", "az"]
},
"git-from-cache": {
"command": "npx",
"args": ["-y", "any-cli-mcp-server", "git_cache.json"]
}
}
}
Faster Startup (Optional, but very recommended)
Build a cache first for better performance:
# Build cache
npx any-cli-mcp-server --cache-build gh
# Use cache
npx any-cli-mcp-server gh_cache.json