MCP Server

Tools

Reference for MCP tools: list_feedbacks and update_feedback_status.

The MCP server exposes two tools.

list_feedbacks

Lists feedback items for your project with optional filtering.

Parameters

ParameterTypeRequiredDescription
statusstringNoFilter by status: new, in_progress, resolved, or closed
page_urlstringNoFilter by page URL where feedback was submitted
formatstringNoOutput format: markdown (default) or json

Example usage (in an AI agent)

"Check for new feedback on my project"

The agent calls list_feedbacks with status: "new" and receives structured feedback including:

  • Feedback comment and page URL
  • DOM selector and click coordinates
  • React component tree and source file
  • Browser info and viewport size
  • Screenshot URL

update_feedback_status

Updates the status of a feedback item.

Parameters

ParameterTypeRequiredDescription
feedback_idstring (UUID)YesThe feedback ID to update
statusstringYesNew status: new, in_progress, resolved, or closed

Example usage (in an AI agent)

"Mark this feedback as resolved"

The agent calls update_feedback_status with the feedback ID and status: "resolved".

Feedback statuses

StatusDescription
newFeedback just submitted (default)
in_progressA developer or agent is working on it
resolvedThe issue has been fixed
closedClosed without fixing (e.g. not actionable)

Rate limits

ActionLimit
list_feedbacks200 requests/hour
update_feedback_status50 requests/hour

Rate limits are per agent token.