CLI wizard to install Nia to your coding agents via MCP server or Skills.
curl -fsSL https://app.trynia.ai/cli | shThis will:
- Install Node.js if needed
- Run the wizard which:
- Opens your browser for authentication
- Installs dependencies (pipx, etc.) for local mode
- Configures your coding agents
npx nia-wizard# Via curl
curl -fsSL https://install.trynia.ai | sh -s -- nk_your_api_key
# Via npx
npx nia-wizard nk_your_api_keyIf you already have an API key:
npx @nia/wizard nk_your_api_key_here# Add Nia MCP server
npx @nia/wizard mcp add
# Add with API key and local mode
npx @nia/wizard mcp add --api-key nk_xxx --local
# Remove Nia MCP server
npx @nia/wizard mcp removeThe wizard also supports installing Nia as a skill via the skills CLI:
npx nia-wizard
# Then select "Install Nia Skill"This runs npx skills add nozomio-labs/nia-skill and stores your API key at ~/.config/nia/api_key.
| Option | Description |
|---|---|
--local |
Use local mode (runs on your machine, requires pipx) |
--remote |
Use remote mode (connects to Nia cloud) |
--debug |
Enable debug logging |
--ci |
CI mode (skip prompts, use defaults) |
--api-key, -k |
Nia API key |
The wizard supports two authentication methods:
When you run the wizard without an API key, it will:
- Connect to Nia servers
- Display an authorization code (e.g.,
ABCD-EFGH) - Open your browser to sign in
- Automatically retrieve your API key once authenticated
This is the fastest way to get started - no manual copying required!
If you prefer, you can:
- Get your API key from app.trynia.ai
- Pass it directly:
npx @nia/wizard nk_xxx - Or select "Enter API key manually" when prompted
| Agent | Config Location |
|---|---|
| Cursor | ~/.cursor/mcp.json |
| VS Code | ~/.vscode/mcp.json |
| Windsurf | ~/.codeium/windsurf/mcp_config.json |
| Cline | ~/.cline/mcp_settings.json |
| Continue | ~/.continue/config.json |
| Antigravity | ~/.gemini/antigravity/mcp_config.json |
| Trae | ~/Library/Application Support/Trae/User/mcp.json |
| Roo Code | ~/.roo-code/mcp.json |
| Kilo Code | ~/.kilocode/mcp.json |
| Gemini CLI | ~/.gemini/settings.json |
| OpenCode | ~/.opencode/config.json |
| Qodo Gen | ~/.qodo/mcp.json |
| Qwen Coder | ~/.qwen/settings.json |
| Visual Studio | ~/.vs/mcp.json |
| Crush | ~/.crush/config.json |
| Copilot Agent | .github/copilot-mcp.json (per-repo) |
| Copilot CLI | ~/.copilot/mcp-config.json |
| Factory | CLI: droid mcp add |
| Agent | Notes |
|---|---|
| Claude Code | CLI: claude mcp add |
| Amp | CLI: amp mcp add |
| Vibe | TOML config at ~/.vibe/config.toml |
| Agent | Config Location |
|---|---|
| Claude Desktop | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Codex CLI | CLI: codex mcp add |
| Codex App | ~/.codex/config.toml |
| Zed | ~/.config/zed/settings.json |
| Augment | VS Code settings |
| JetBrains | ~/.jetbrains/mcp.json |
| Kiro | ~/.kiro/mcp.json |
| LM Studio | ~/.lmstudio/mcp.json |
| Bolt AI | ~/Library/Application Support/BoltAI/mcp.json |
| Perplexity | ~/Library/Application Support/Perplexity/mcp.json |
| Warp | ~/.warp/mcp.json |
| Amazon Q | ~/.aws/amazonq/mcp.json |
- Zencoder - Configure via UI: Menu → Agent tools → Add custom MCP
- Rovo Dev - Configure via CLI:
acli rovodev mcp
The wizard detects which coding agents are installed on your system and adds the Nia MCP server configuration to each one.
Local mode (recommended): Runs the MCP server on your machine using pipx. Requires Python and pipx to be installed.
Remote mode: Connects directly to Nia's cloud MCP server. No local installation required, but may be less stable.
MIT