Proferprofer

Quickstart

Get Profer running in under 2 minutes

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://profer.dev/api",
        "PROFER_API_KEY": "your-api-key"
      }
    }
  }
}

For Cursor, add the same to .cursor/mcp.json.

Get your API key at profer.dev.

3. Use it

Ask your agent:

"Write a technical spec for the auth migration and publish it for review"

The agent will:

  1. Generate content
  2. Call publish() with messages, artifact, 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_URLYeshttps://profer.dev/api
PROFER_API_KEYYesYour API key from profer.dev

On this page