Faster Fixes
About
The open-source feedback pipeline for AI-native dev teams. Built for developers, designed for their clients.
Details
- Author
- manucoffin
- GitHub stars
- 15
- Downloads
- 329
- Categories
- Other, Developer Tools, AI, Productivity
Jump to
- Visual feedback widget for clients to click on elements
- Automatic context capture (screenshot, URL, DOM, React component tree)
- Developer dashboard to review feedback organized by project
- Markdown export of each feedback item as a structured bug report
- MCP server for AI coding agents to fetch and resolve feedback
- GitHub integration to automatically create issues from feedback
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Faster FixesCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install the @fasterfixes/react widget in your React application and wrap your app with FeedbackProvider, providing your project API key. To use the MCP server, run npx -y @fasterfixes/mcp with the environment variables FASTER_FIXES_TOKEN and FASTER_FIXES_PROJECT. The server supports Claude Code, Cursor, VS Code, Windsurf, Codex, and Zed.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"faster fixes": {
"faster-fixes": {
"command": "npx",
"args": [
"-y",
"@fasterfixes/mcp"
],
"env": {
"FASTER_FIXES_TOKEN": "<YOUR_TOKEN>",
"FASTER_FIXES_PROJECT": "<YOUR_PROJECT_ID>"
}
}
}
}
}
McpServers
{
"faster-fixes": {
"command": "npx",
"args": [
"-y",
"@fasterfixes/mcp"
],
"env": {
"FASTER_FIXES_TOKEN": "<YOUR_TOKEN>",
"FASTER_FIXES_PROJECT": "<YOUR_PROJECT_ID>"
}
}
}
MCP Setup
The MCP server exposes two tools: list_feedbacks and update_feedback_status. It connects to the Faster Fixes API using an organization-scoped agent token.
<details>
<summary><strong>Claude Code</strong></summary>
Add to your .mcp.json:
{
"mcpServers": {
"faster-fixes": {
"command": "npx",
"args": ["-y", "@fasterfixes/mcp"],
"env": {
"FASTER_FIXES_TOKEN": "ff_agent_your_token_here",
"FASTER_FIXES_PROJECT": "proj_your_project_id"
}
}
}
}
</details>
<details>
<summary><strong>Cursor</strong></summary>
Add to .cursor/mcp.json:
{
"mcpServers": {
"faster-fixes": {
"command": "npx",
"args": ["-y", "@fasterfixes/mcp"],
"env": {
"FASTER_FIXES_TOKEN": "ff_agent_your_token_here",
"FASTER_FIXES_PROJECT": "proj_your_project_id"
}
}
}
}
</details>
<details>
<summary><strong>VS Code (GitHub Copilot)</strong></summary>
Add to .vscode/mcp.json:
{
"servers": {
"faster-fixes": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@fasterfixes/mcp"],
"env": {
"FASTER_FIXES_TOKEN": "ff_agent_your_token_here",
"FASTER_FIXES_PROJECT": "proj_your_project_id"
}
}
}
}
</details>
<details>
<summary><strong>Windsurf</strong></summary>
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"faster-fixes": {
"command": "npx",
"args": ["-y", "@fasterfixes/mcp"],
"env": {
"FASTER_FIXES_TOKEN": "ff_agent_your_token_here",
"FASTER_FIXES_PROJECT": "proj_your_project_id"
}
}
}
}
</details>
<details>
<summary><strong>Codex</strong></summary>
Add to .codex/config.toml:
[mcp_servers.faster-fixes]
command = "npx"
args = ["-y", "@fasterfixes/mcp"]
[mcp_servers.faster-fixes.env]
FASTER_FIXES_TOKEN = "ff_agent_your_token_here"
FASTER_FIXES_PROJECT = "proj_your_project_id"
</details>
<details>
<summary><strong>Zed</strong></summary>
Add to ~/.config/zed/settings.json:
{
"context_servers": {
"faster-fixes": {
"command": "npx",
"args": ["-y", "@fasterfixes/mcp"],
"env": {
"FASTER_FIXES_TOKEN": "ff_agent_your_token_here",
"FASTER_FIXES_PROJECT": "proj_your_project_id"
}
}
}
}
</details>
You can find your agent token and project ID in Organization Settings on the dashboard.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





