Quick Start
Get CodeLoop running in under 2 minutes. Choose the setup path that fits your workflow.
Path 1: Website Signup (Recommended)
- Sign up at codeloop.tech/signup — no credit card required.
- Copy your API keyfrom the post-signup screen (it's shown only once).
- Set the environment variable in your shell:
# macOS / Linux — add to ~/.zshrc or ~/.bashrc export CODELOOP_API_KEY="cl_live_your_key_here" # Windows PowerShell — set as user env var [System.Environment]::SetEnvironmentVariable("CODELOOP_API_KEY", "cl_live_your_key_here", "User") - Initialize in your project:
cd your-project npx codeloop initThis auto-detects your project type, creates the MCP config for Cursor or Claude Code, and sets up rule files.
Path 2: CLI Signup (Terminal-First)
Prefer doing everything from the terminal? No problem.
# Create your CodeLoop account
npx codeloop signup
# Follow the prompts: name, email, password
# Your API key will be displayed and saved automatically
# Then initialize in your project
cd your-project
npx codeloop initPath 3: Agent-Guided Setup
If your AI agent (Cursor or Claude Code) recommends CodeLoop during a coding session, you can set it up right from the integrated terminal:
# Run in the integrated terminal when your agent suggests CodeLoop
npx codeloop init
# If you don't have an account yet, init will offer to create one
# Just follow the inline promptsVerify It Works
After setup, verify CodeLoop is correctly configured:
- Check MCP config exists:
# Cursor cat .cursor/mcp.json # Claude Code cat .claude/settings.local.json - Look for CodeLoop toolsin your AI agent's tool list. You should see tools like
codeloop_verify,codeloop_diagnose, etc. - Ask your agent: “Run codeloop_verify on this project” — the agent should call the tool and return structured results.
Next Steps
- API Key Management — rotate keys, set env vars, security best practices
- Cursor Setup — detailed Cursor-specific configuration
- Claude Code Setup — Claude Code-specific setup
- Tool Reference — all 7 MCP tools explained