Search within environment variable values across your Vercel projects. Find where specific connection strings, API keys, or URLs are being used.
npm install -g vercel-env-checker# Run the interactive wizard
vecw
# Or use the CLI with commands
vec login -t YOUR_TOKEN
vec val "postgres://"
vec run| Command | Description |
|---|---|
vec login -t <token> |
Authenticate with Vercel |
vec logout |
Clear stored authentication |
vec val <query> |
Search env var values (alias: check-value) |
vec run |
Run interactive step-by-step wizard |
vecw |
Shortcut for interactive wizard |
# Authenticate
vec login -t your_vercel_token
# Search for postgres connections
vec val "postgres://"
# Search in production only
vec val "stripe.com" --target production
# Run interactive wizard
vecwThe interactive wizard guides you through:
- Authentication — Log in with your Vercel token
- Environment Selection — Choose: production, preview, development, or all
- Project Selection — Use arrow keys and Space to select projects
- Value Search — Enter text to search within env var values
- Navigate to https://vercel.com/account/tokens
- Click Create Token
- Copy the generated token
- Node.js 18.0.0 or higher
- Vercel account with API access
- Token stored locally at
~/.vercel-env-checker/config.json - Or use
VERCEL_TOKENenvironment variable - Decrypted values are never cached
ISC