Installation
Prerequisites
- Node.js v20.0.0 or later
- npm, pnpm, or yarn
- macOS, Windows, or Linux
- An AI editor — see all 20 supported editors
Install via npm (recommended)
npm install -g conjraThis installs two entry points:
conjra— the CLI (used forinit,add,remove,status)- An MCP server at
dist/mcp/server.js— discovered by your AI editor afterconjra init
Install via npx (no global install)
npx conjra init --ai claude npx conjra add stripeVerify installation
conjra statusExpected output:
conjra v1.0.0 No providers connected. Run: conjra add <provider> MCP: Not registered with any editor. Run: conjra init --ai <editor>Troubleshooting installation
Command not found
If conjra is not recognized after a global install, your npm global bin directory may not be in your PATH:
# Find where npm installs global binaries npm bin -g # Add it to your PATH (macOS/Linux) export PATH=$(npm bin -g):$PATH # Windows PowerShell $env:Path += ";$(npm bin -g)"Permission errors (macOS/Linux)
nvm install 20 nvm use 20Node version too old
Conjra requires Node.js 20+. Check with node --version. Use nvm to upgrade.
Next step
Once installed, initialize Conjra for your AI editor and then connect your first provider.