Proferprofer

Quickstart

Get Profer running in under 2 minutes

Quickstart

1. Install

npm install -g profer

Or use directly with npx:

npx profer mcp

2. 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:

  1. Generate HTML content
  2. Call publish() with the HTML and feedback questions
  3. 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

VariableRequiredDescription
PROFER_API_URLYesSupabase edge function base URL
PROFER_API_KEYYesAPI key for authentication

On this page