apexe Quick Start¶
Turn any CLI tool into an AI-callable MCP service in 30 seconds.
Install¶
git clone https://github.com/aiperceivable/apexe.git
cd apexe
cargo install --path .
apexe --version
30 seconds: Scan, Serve¶
Claude Desktop Integration¶
Copy the output into ~/Library/Application Support/Claude/claude_desktop_config.json, then restart Claude Desktop.
Cursor Integration¶
Add the output to Cursor's MCP settings.
HTTP Mode with Explorer UI¶
Open http://127.0.0.1:8000 in a browser to explore available tools.
What happened?¶
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.
Scan more tools¶
See what you have¶
Next steps¶
# 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 --show
See User Manual for full documentation.