Turn any CLI tool into an AI-callable MCP service in 30 seconds.
git clone https://github.com/aiperceivable/apexe.git
cd apexe
cargo install --path .
apexe --versionapexe scan git
apexe serveapexe serve --show-config claude-desktopCopy the output into ~/Library/Application Support/Claude/claude_desktop_config.json, then restart Claude Desktop.
apexe serve --show-config cursorAdd the output to Cursor's MCP settings.
apexe serve --transport http --port 8000 --explorerOpen http://127.0.0.1:8000 in a browser to explore available tools.
apexe scan gitran git's--help, parsed man pages, and checked shell completions.- Generated
~/.apexe/modules/git.binding.yaml(JSON Schema for every subcommand). - Generated
~/.apexe/acl.yaml(readonly commands allowed, destructive commands denied). apexe servestarted an MCP server on stdio, exposing all scanned tools.
apexe scan ls curl jqapexe list
apexe list --format json# Deep scan with 3 levels of subcommands
apexe scan git --depth 3
# HTTP server for remote agents
apexe serve --transport http --port 8000
# SSE transport
apexe serve --transport sse --port 8000
# Initialize a config file for customization
apexe config --init
# View resolved configuration
apexe config --showSee User Manual for full documentation.