H

Hledit Mcp

dabito
πŸ“‚ File Systems🟒 Verified Active
0 Views
0 Installs

πŸ“‡ 🏠 🍎 πŸͺŸ 🐧 - Hash-anchored file edits for MCP clients. Reads files with line anchors, validates anchors against current content, and rejects stale writes before changing files.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "dabito-hledit-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "dabito-hledit-mcp"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

hledit-mcp

npm version License: MIT MCP Registry Glama

hledit-mcp is an MCP server exposing hledit's hash-anchored file edits to standard MCP clients such as Claude Code, Claude Desktop, and Cursor.

Same idea as pi-hledit (the Pi-native integration), but over MCP instead of Pi's extension API, so the same edit primitive can be used from MCP-compatible clients. Official MCP Registry: io.github.dabito/hledit-mcp.

Instead of asking an agent to reproduce old text exactly, hledit read annotates each line with a stable anchor:

5#K7Q:func main() {
6#M9A:    fmt.Println("hello")
7#R2C:}

Write commands reference anchors such as 6#M9A. Before changing the file, hledit recomputes the hash at that line. If the file changed since it was read, the anchor is rejected and no write happens β€” the agent gets a stale error and a remap hint instead of silently corrupting the wrong line.

Demo

See docs/demo/transcript.md for a deterministic MCP stdio transcript showing stale-write rejection over the actual hledit-mcp tool surface.

The transcript is generated by docs/demo/hledit-mcp-demo.mjs, which drives dist/index.js through @modelcontextprotocol/sdk's stdio client. It does not call hledit directly.

MCP server for stale-write-safe file editing

hledit-mcp gives MCP-compatible coding agents one file-editing tool that reads line anchors, validates those anchors against current file contents, and rejects stale writes before touching disk. It is for local workspace edits where you want explicit stale-context failure instead of blind text replacement.

Why MCP, separately from pi-hledit

pi-hledit and hledit-mcp share the same tool contract (core.ts in this repo β€” arg-building, batch translation, result formatting) and the same underlying hledit CLI. Only the registration/execution glue differs: pi-hledit wires that contract into Pi's registerTool, this wires it into @modelcontextprotocol/sdk's McpServer. MCP has no equivalent of Pi's renderCall/renderResult terminal rendering, so this package doesn't have one either β€” that layer is genuinely Pi-specific chrome, not part of the portable tool contract.

Use hledit-mcp when you want stale-write rejection over an MCP tool boundary instead of relying on a host's native text replacement behavior.

Requirements

  • Go 1.21+ to install the hledit CLI (or a prebuilt binary on PATH)
  • Node.js 18+
  • An MCP-compatible client

Install

Install the hledit CLI first:

go install github.com/dabito/hledit@latest

Then configure your MCP client to run hledit-mcp. For Claude Code, verify the current CLI syntax with claude mcp add --help; recent versions use:

claude mcp add hledit -- npx -y hledit-mcp

Claude Desktop and other MCP clients can use the same stdio server shape:

{
  "mcpServers": {
    "hledit": {
      "command": "npx",
      "args": ["-y", "hledit-mcp"],
      "env": {
        "HLEDIT_CWD": "/path/to/workspace"
      }
    }
  }
}

Set HLEDIT_CWD to the workspace the MCP client should allow hledit to edit.

Configuration

VariableDefaultDescription
HLEDIT_BINhledit (on PATH)Path to the hledit binary, if not on PATH.
HLEDIT_CWDserver's process.cwd()Working directory hledit resolves relative paths against. Keep this scoped to the workspace you expect the MCP client to edit.
HLEDIT_MCP_DIFF0Opt-in textual diff output for successful edit/batch calls. Off by default to keep MCP/model context compact. Set 1, true, or yes to enable.
HLEDIT_MCP_DIFF_MAX_LINES80Max diff lines when HLEDIT_MCP_DIFF is enabled, including the omission marker. Minimum accepted value: 3.
HLEDIT_MCP_DIFF_CONTEXT2Context lines around changed ranges when diff output is enabled. Minimum accepted value: 0.
HLEDIT_MCP_DIFF_MAX_CELLS40000Max LCS comparison cells before diff body is omitted. Minimum accepted value: 1.

Tool

hledit

One tool, three operations, matching pi-hledit's contract exactly:

opPurpose
readRead annotated lines with LN#HASH anchors
editApply a single replace/insert/delete/replace-range
batchApply multiple anchor-referenced edits in one call
NameTypeRequiredDescription
opstringβœ“"read", "edit", or "batch"
pathstringβœ“File path
offsetnumber1-indexed starting line (read)
limitnumberMax lines to return (read); defaults to 2000
contextnumberSurrounding lines around each grep match; defaults to 2 when grep is set, use 0 for match-only output
grepstringFilter lines by substring (read)
actionstringreplace, insert, delete, or replace-range (edit)
end_anchorstringEnd anchor for replace-range/range delete
contentstringReplacement/inserted content; empty = delete
afterbooleanFor action:"insert", insert after the anchor
editsarray or stringfor batchPreferred: structured array of batch edit ops (replace/delete/insert). Legacy JSON string still accepted.

Workflow: read to get anchors β†’ edit (single change) or batch (multiple). If an edit returns stale, re-read to get fresh anchors before retrying β€” the anchor's line moved or changed since it was read.

Successful edit and batch calls return concise summaries, including Lines: +N -M when the installed hledit CLI provides line delta metadata (hledit >= 1.2.4). Older hledit versions still work; they just omit the line delta summary.

Contextual grep uses a small default window (context:2) when grep is set; pass context:0 for match-only output.

Set HLEDIT_MCP_DIFF=1 to append a capped fenced diff block for successful edits. Leave it off for the most token-economical MCP responses.

Preferred batch shape uses structured edits so the MCP/RPC layer handles escaping:

{
  "op": "batch",
  "path": "src/file.ts",
  "edits": [
    { "op": "replace", "anchor": "12#NKT", "lines": ["const ok = true;"] }
  ]
}

Contextual grep example:

{ "op": "read", "path": "src/file.ts", "grep": "validateToken" }

Match-only grep example:

{ "op": "read", "path": "src/file.ts", "grep": "validateToken", "context": 0 }

Legacy JSON-string edits remains supported during the transition.

Default read calls are bounded: when offset/limit are omitted, the server uses offset=1 and limit=2000.

Development

npm install
npm test          # typecheck + build + unit/e2e tests + lint
npm run build      # compile index.ts+core.ts to dist/index.js
npm start         # run the server directly from source via tsx (stdio transport)

Unit tests in core.test.ts cover the same contract as pi-hledit's test suite, minus the Pi-specific rendering assertions (there's no render layer here). e2e.test.ts drives the built dist/index.js over a real MCP stdio handshake with @modelcontextprotocol/sdk's own Client/StdioClientTransport β€” the same artifact npx hledit-mcp runs, not just the TypeScript source.

The published bin/main point at dist/index.js, built with esbuild (build.mjs) and run via plain node β€” this keeps the >=18 Node requirement honest. Running index.ts directly with node (no tsx) only works on Node β‰₯22.6, which has built-in TypeScript type-stripping; older LTS versions have no such support at all.

Credits and prior art

The hashline-edit idea comes from Can BΓΆlΓΌk / @can1357's coding-agent harness work, especially β€œI Improved 15 LLMs at Coding in One Afternoon. Only the Harness Changed.” and oh-my-pi. See hledit's credits for more prior art.

Related packages

  • hledit β€” the standalone CLI both integrations wrap.
  • pi-hledit β€” the Pi-native integration, same tool contract.

Related MCP Servers

S
Server Filesystem
Verified

πŸ“‡ 🏠 - Direct local file system access.

πŸ“‚ File Systems1 views
S
Smart Tree

πŸ¦€ 🏠 🍎 πŸͺŸ 🐧 - AI-native directory visualization with semantic analysis, ultra-compressed formats for AI consumption, and 10x token reduction. Supports quantum-semantic mode with intelligent file categorization.

πŸ“‚ File Systems0 views
C
Changethisfile Mcp

πŸ“‡ ☁️ - Free file conversion between 690+ formats. Tools: convertfile (URL or base64 in β†’ signed download URL out) and listconversions. Covers image, video, audio, document, data, font, ebook, and archive formats. No auth or signup required; remote streamable-HTTP endpoint available (see README).

πŸ“‚ File Systems0 views
F
Ftp Deploy Mcp

πŸ“‡ 🏠 🍎 πŸͺŸ 🐧 - Deploy files from AI agents to your own FTP/FTPS/SFTP servers β€” multi-server config, recursive deploy with dry-run and gitignore-like excludes, per-server path jail and read-only mode, FileZilla import, one-command setup for popular MCP clients.

πŸ“‚ File Systems0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Active

Recent health check succeeded.

Last checked: 7/28/2026, 9:23:20 PM

Unclaimed listing (imported or pending owner verification). Claim it β†’
β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.