Fix My Comments
БесплатноНе проверенMCP server that exposes code review tasks from the Fix My Comments VS Code extension to AI agents, enabling them to list, retrieve, reply to, and update task st
Описание
MCP server that exposes code review tasks from the Fix My Comments VS Code extension to AI agents, enabling them to list, retrieve, reply to, and update task statuses.
README
MCP server for Fix My Comments — exposes local VS Code comment threads to AI agents (Claude Code, Cursor, Windsurf, etc.) through the Model Context Protocol.
The server is intentionally small: it reads and writes the same JSON files as the VS Code extension, under ~/.fixmycomments/<repo>-<hash>/<branch>/, and communicates over stdio.
How it works
- Zero config — the server derives storage from
process.cwd()and the current Git branch. - Repo + branch scoped — comments are isolated by repository and branch.
- Shared with the extension — the VS Code extension and MCP server read/write the same
threads.jsonandmessages.jsonfiles. - Stale-comment safe — the server checks anchored line hashes against the current workspace file. Outdated threads are hidden by default and write actions are blocked.
Run your agent from inside the repository root. If you start it from another directory, the server will resolve a different storage path.
Installation
Option A: Global install via npm (recommended)
npm install -g fix-my-comments-mcp
Then add it to Claude Code:
claude mcp add fix-my-comments --scope user -- fix-my-comments
Option B: Local dev via npm link
git clone <this-repo>
cd fix-my-comments-mcp
npm install
npm run build
npm link
claude mcp add fix-my-comments --scope user -- fix-my-comments
Available Tools
| Tool | Description |
|---|---|
list_open_threads |
List open, non-outdated threads for the current branch. Optionally filter by file path. |
get_thread |
Get a thread and its messages; use messageLimit to fetch only the latest messages. |
get_message |
Get one comment/message with its thread summary and position. |
get_message_context |
Get one message plus N messages before/after it to avoid loading a whole long thread. |
post_agent_reply |
Append an AI reply, optionally tied to a message and optionally posted as a code suggestion. |
set_thread_status |
Resolve or reopen a thread. |
set_task_message_status |
Check or uncheck a task message. |
add_reaction |
Add an emoji reaction to a message. |
remove_reaction |
Remove an agent's emoji reaction from a message. |
Token-efficient reads
Agents should prefer the smallest read tool that answers the question:
- Use
list_open_threadsto discover work. - Use
get_messagewhen a message id is already known. - Use
get_message_contextto fetch a small window around one message. - Use
get_threadonly when the whole thread is needed, or passmessageLimitfor the latest messages.
Outdated thread behavior
By default, the server filters out and blocks writes to outdated threads whose anchored line changed.
list_open_threadsexcludes outdated threads unlessincludeOutdated=true.get_thread,get_message, andget_message_contextrequireincludeOutdated=trueto inspect stale comments.post_agent_reply,set_task_message_status,add_reaction, andremove_reactionare blocked on outdated threads.
Requirements
- Node.js 18+
- The Fix My Comments VS Code extension installed and active in the project
Установка Fix My Comments
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/duraisamy-gokul/fix-my-comments-mcpFAQ
Fix My Comments MCP бесплатный?
Да, Fix My Comments MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Fix My Comments?
Нет, Fix My Comments работает без API-ключей и переменных окружения.
Fix My Comments — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Fix My Comments в Claude Desktop, Claude Code или Cursor?
Открой Fix My Comments на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Fix My Comments with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
