MCX MCP Server

MCP Chrome Feedback - 提供MCP服务与Chrome扩展交互的反馈收集功能

Local serverstdio

What is the MCX MCP server?

If you already use MCX, the mcx mcp server is the piece that lets your assistant work with it directly. MCP Chrome Feedback - 提供MCP服务与Chrome扩展交互的反馈收集功能.

What the server does

  1. 依赖问题: - 确保使用最新版本: mcp-chrome-feedback@latest - 清理npm缓存: npm cache clean --force

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • summary — AI工作摘要 (默认: "我已完成了您请求的任务。")
  • timeout — 超时时间(秒) (默认: 600)
  • project_directory — 项目目录 (默认: ".")
  • limit — 返回记录数量 (默认: 10)
  • MCP_CHROME_PORT — Chrome扩展通信端口 (默认: 8797,如端口被占用会自动递增到可用端口)
  • interactive_feedback — The interactive_feedback tool exposed by this server
  • get_feedback_history — The get_feedback_history tool exposed by this server
  • get_extension_status — The get_extension_status tool exposed by this server
  • clear_feedback_history — The clear_feedback_history tool exposed by this server

Installation

mcp-chrome-feedback on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Credentials and setup notes

Configuration is passed through the environment: MCP_CHROME_PORT. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Where it fits

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCX's toolset — summary, timeout, project_directory and 6 more — is a fair guide to whether it matches your workflow. It is maintained by 2019-02-18; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 9 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch MCX.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
summaryAI工作摘要 (默认: "我已完成了您请求的任务。")
timeout超时时间(秒) (默认: 600)
project_directory项目目录 (默认: ".")
limit返回记录数量 (默认: 10)
MCP_CHROME_PORTChrome扩展通信端口 (默认: 8797,如端口被占用会自动递增到可用端口)
interactive_feedbackThe interactive_feedback tool exposed by this server.
get_feedback_historyThe get_feedback_history tool exposed by this server.
get_extension_statusThe get_extension_status tool exposed by this server.
clear_feedback_historyThe clear_feedback_history tool exposed by this server.

How to install the MCX MCP server

{
  "mcpServers": {
    "chrome-feedback": {
      "command": "npx",
      "args": ["mcp-chrome-feedback@latest"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
MCP_CHROME_PORTConfiguration value read at startup.Optional

Example prompts to try

  • Use MCX to summary.
  • Use MCX to timeout.
  • Use MCX to project directory.

Frequently asked questions

It connects MCX to MCP-compatible AI assistants such as Claude and Cursor, exposing 9 tools (summary, timeout, project_directory, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCX directly.