---
title: 把用户反馈接入你⁠的编程 Agent | Make This Better
description: 原生 MCP 集成，支持 Claude Code、Codex、Cursor、VS Code、JetBrains 和 Windsurf。
url: https://makethisbetter.dev/zh-CN/mcp.md
canonical: https://makethisbetter.dev/zh-CN/mcp
locale: zh-CN
site: Make This Better
image: https://makethisbetter.dev/assets/opengraph-5c1e3cac.png
alternates:
  en: https://makethisbetter.dev/mcp
  zh-CN: https://makethisbetter.dev/zh-CN/mcp
  x-default: https://makethisbetter.dev/mcp
---

> HTML version: https://makethisbetter.dev/zh-CN/mcp
> Site index for agents: https://makethisbetter.dev/llms.txt

# MCP Server

Bring feedback into your AI coding agent. Native MCP integration for Claude Code, Codex, Cursor, VS Code, JetBrains, and Windsurf.

## Install

```bash
npx -y @makethisbetter/mcp
```

No global install needed. Add the server once in your MCP client's user scope to use it across projects.

## MCP Tools

The server exposes 5 tools covering the full feedback lifecycle:

| Tool | Description |
|------|-------------|
| `list` | Browse feedback waiting for attention, filter by status and type |
| `detail` | Read full context: description, screenshot, DOM snapshot, console errors, triage |
| `pick` | Claim a feedback and start working on it (sets status to in_progress) |
| `dismiss` | Decline a feedback (duplicate, out of scope, not actionable) |
| `resolve` | Mark as shipped, optionally link a pull request URL |

## Configuration

### Claude Code

```json
{
  "mcpServers": {
    "makethisbetter": {
      "command": "npx",
      "args": ["-y", "@makethisbetter/mcp"],
      "env": {
        "MAKETHISBETTER_API_KEY": "your-api-key"
      }
    }
  }
}
```

### Cursor

Add the same configuration to your Cursor MCP settings.

## Features

- **Zero project setup** — Add one user-scope config block and use it across projects
- **Full context** — Every tool returns screenshot URL, DOM snapshot, console errors, and AI triage analysis
- **Structured output** — JSON responses designed for agent consumption
- **Project management** — Create projects and manage settings via MCP tools

## Source

- Package: [@makethisbetter/mcp on npm](https://www.npmjs.com/package/@makethisbetter/mcp)
- Source: [github.com/makethisbetter/mcp](https://github.com/makethisbetter/mcp)


---

## More from Make This Better

- [Home](https://makethisbetter.dev/zh-CN/.md)
- [隐私](https://makethisbetter.dev/zh-CN/privacy.md)
- [条款](https://makethisbetter.dev/zh-CN/terms.md)
- [Site index for agents](https://makethisbetter.dev/llms.txt)

Contact: contact@makethisbetter.dev
