Quickstart
Get Profer running in under 2 minutes
Quickstart
1. Install
npm install -g proferOr use directly with npx:
npx profer mcp2. Configure your MCP client
Add Profer to your MCP configuration. For Claude Code, add to your MCP config:
{
"mcpServers": {
"profer": {
"command": "npx",
"args": ["-y", "profer", "mcp"],
"env": {
"PROFER_API_URL": "https://your-project.supabase.co/functions/v1",
"PROFER_API_KEY": "your-api-key"
}
}
}
}For Cursor, add the same to .cursor/mcp.json.
3. Use it
Ask your agent:
"Write a technical spec for the auth migration and publish it for review"
The agent will:
- Generate HTML content
- Call
publish()with the HTML and feedback questions - Return a URL like
profer.dev/v/PF-K8M3N
Share the URL. Reviewers click, read, answer questions, submit. No login required.
Then ask your agent:
"Check the feedback on PF-K8M3N"
The agent calls get() and reads the structured feedback.
Environment variables
| Variable | Required | Description |
|---|---|---|
PROFER_API_URL | Yes | Supabase edge function base URL |
PROFER_API_KEY | Yes | API key for authentication |