fix-my-comments-mcp

duraisamy-gokul/fix-my-comments-mcp
0 starsCommunity

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

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.md

fix-my-comments-mcp

MCP server for Fix My Comments — exposes code review tasks to AI agents (Claude Code, Cursor, etc.) via the Model Context Protocol.

How it works

The server reads task data from ~/.fixmycomments/<repo>-<hash>/<branch>/ (the home directory root, like ~/.claude/). This directory is written by the Fix My Comments VS Code extension.

  • Zero config — the server derives the storage path from process.cwd() (the repo root) and the current Git branch: ~/.fixmycomments/<repo-basename>-<shorthash>/<branch>/.
  • Repo + branch scoped — tasks are isolated per repository and Git branch, matching VS Code workspace state.
  • Shared with the extension — the extension computes the same path, so both read/write the same data. Run the server from inside your repo so it resolves the correct repo + branch.

Installation

Option A: Global install via npm (recommended)

npm install -g fix-my-comments-mcp

Then add 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_tasks | List all open tasks for the current branch. Optionally filter by file path. | | get_task_thread | Get a task and its full message thread. | | post_agent_reply | Append a reply to a task thread as an AI agent. | | set_task_status | Set a task status (resolved or requires_review). |

Requirements

  • Node.js 18+
  • The Fix My Comments VS Code extension installed and active in the project

Related MCP servers

Browse all →