npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@fasterfixes/mcp

v0.0.3

Published

MCP server for Faster Fixes — lets AI agents list and manage client feedback

Readme

@fasterfixes/mcp

Documentation · Website

MCP server for Faster Fixes — connect AI coding agents to your client feedback.

Clients leave feedback on your site via the widget. This MCP server lets your AI coding agent fetch that feedback and update its status, so you never leave your terminal.

Prerequisites

  1. Agent token — Organization Settings > Agent Tokens > Create token
  2. Project ID — Project Settings > the proj_... identifier

Installation

No global install needed. Run a single command to configure your editor.

Claude Code

claude mcp add faster-fixes -s project \
  --env FASTER_FIXES_TOKEN=ff_agent_xxx \
  --env FASTER_FIXES_PROJECT=proj_xxx \
  -- npx -y @fasterfixes/mcp

Or add to .mcp.json at your project root:

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

Cursor

Add to .cursor/mcp.json in your project (or ~/.cursor/mcp.json for global):

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

VS Code (GitHub Copilot)

Add to .vscode/mcp.json in your project:

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

Note: VS Code uses "servers" (not "mcpServers") and requires "type": "stdio".

Windsurf

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

Codex

Add to .codex/config.toml in your project (or ~/.codex/config.toml for global):

[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"

Note: Codex uses TOML, not JSON.

Zed

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

Note: Zed uses "context_servers" as the key, and the config goes directly in your main settings file.

Agent Skill (optional)

For a one-command workflow, install the fix-feedback skill. It teaches your agent the full loop: fetch → fix → resolve.

npx skills add manucoffin/faster-fixes/packages/skills/fix-feedback

Then just say fix feedback and your agent handles the rest. Works with Claude Code, Cursor, Windsurf, and 40+ other agents via skills.sh.

Usage

After configuring, ask your agent:

  • "Check for new feedback"
  • "Get all open feedback and fix them"
  • "Mark feedback abc123 as resolved"

Or set up a scheduled task to fetch and fix feedback automatically.

Tools

list_feedbacks

List feedback items for your project. Returns page URL, CSS selector, click coordinates, component tree, browser info, and screenshot.

| Parameter | Type | Required | Description | | ---------- | ------ | -------- | -------------------------------------------------- | | status | string | No | Filter: new, in_progress, resolved, closed | | page_url | string | No | Filter by the page where feedback was left | | format | string | No | markdown (default) or json |

update_feedback_status

Update the status of a feedback item.

| Parameter | Type | Required | Description | | ------------- | ------ | -------- | --------------------------------------------- | | feedback_id | string | Yes | The feedback ID | | status | string | Yes | new, in_progress, resolved, or closed |

Environment variables

| Variable | Required | Description | | ---------------------- | -------- | ----------------------------------------------------- | | FASTER_FIXES_TOKEN | Yes | Agent token from Organization Settings | | FASTER_FIXES_PROJECT | Yes | Project ID (proj_...) from Project Settings | | FASTER_FIXES_URL | No | API base URL (defaults to https://www.faster-fixes.com) |

Security

  • The agent token is scoped to your organization and can only read feedback and update status
  • No delete, create, or admin operations are available
  • Tokens can be revoked instantly from the dashboard
  • All API calls are rate-limited

License

MIT