Proferprofer

Use with Claude Code

Set up Profer as an MCP tool in Claude Code

Use with Claude Code

Claude Code has native MCP support. Add Profer and your agent can publish, review, and iterate on artifacts directly.

Configure

Add to your Claude Code MCP settings (.claude/mcp.json or global settings):

{
  "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"
      }
    }
  }
}

Usage

Once configured, Claude Code automatically has access to three tools: publish, get, and update.

Publishing

"Write an API design document for the user service and publish it for team review"

Claude will generate HTML, call publish(), and give you a URL.

Checking feedback

"Check if anyone has reviewed the user service spec (PF-K8M3N)"

Claude calls get() and summarizes the feedback.

Iterating

"Update the spec based on the feedback — Sarah wants us to add rate limiting"

Claude reads the feedback, modifies the HTML, calls update(), and the page gets a new version.

Tips

  • Claude generates good HTML naturally — you don't need to specify formatting
  • Include specific questions in your prompt: "ask reviewers to approve and pick a database option"
  • Claude will remember the page ID within the conversation

On this page