Title here
Summary here
Install an MCP server from a repository, local file, or git URL
Install an MCP server configuration from a configured repository, local JSON file, or git URL.
The source can be:
When given a name (not a path), aix searches configured repositories first. If the server exists in multiple repositories, you will be prompted to select one. Use –file to skip repo search and treat the argument as a file path.
For git URLs, the repository is cloned to a temporary directory, MCP servers are discovered in the mcp/ directory, and you select which to install.
aix mcp install <source> [flags] # Install by name from configured repos
aix mcp install github-mcp
# Install from local JSON file
aix mcp install ./servers/github.json
aix mcp install --file github.json # Force file path interpretation
# Install from absolute path
aix mcp install /path/to/server.json
# Install from git repository
aix mcp install https://github.com/user/mcp-servers.git
# Force overwrite existing server
aix mcp install github-mcp --force -f, --file treat argument as a file path instead of searching repos
--force overwrite existing MCP server without confirmation
-h, --help help for install --log-file string write logs to file in JSON format
--log-format string log format: text, json (default "text")
-p, --platform strings target platform(s): claude, opencode (default: all detected)
-q, --quiet suppress non-error output
-v, --verbose count increase verbosity level (e.g., -v, -vv)