hashline-mcp
Related Servers
Alternatives to hashline-mcp
No user-submitted related servers found.
Related Servers
- AlicenseNot gradedqualityBmaintenanceMCP server providing hash-verified file editing and targeted reads, reducing context consumption and preventing silent corruption by requiring content hashes for edits.21 npm34Apache 2.0
- AlicenseNot gradedqualityDmaintenanceA TypeScript-based MCP server that provides tools for making precise line-based edits to text files within allowed directories.34MIT
- FlicenseBqualityDmaintenanceWindows-first MCP server for deterministic file writes with atomic create, replace, and structured edit operations, preserving encoding and newline styles.101-
- AlicenseAqualityBmaintenanceAn MCP server for reading and editing large text files using content-addressed anchors that survive line shifts, providing tools like read_file_range, edit_file_range, insert_at, prepend_to_file, and append_to_file.6MIT
- AlicenseAqualityCmaintenanceLLM-optimized MCP server for Obsidian vaults with surgical edits, hash-based concurrency safety, and no whole-file rewrites.3223 npm1MIT
- AlicenseNot gradedqualityAmaintenanceA provider-agnostic MCP server that synchronizes work-in-progress between multiple coding sessions to prevent file conflicts.46 npm2MIT
TDQS
Scored across 2 tools
hashline_read only inspects and returns content with hashes, while hashline_edit exclusively mutates files via line:hash references. Their responsibilities are complementary, so there is no realistic ambiguity about which tool to choose.
Both tools use the exact hashline_<verb> pattern, with a stable domain prefix and an action verb. This makes the API naming predictable and easy to extend.
Two tools is on the low end, but it fits the server's narrow read-then-edit workflow without padding. The count is slightly minimal but reasonable for the stated purpose.
The read/edit pair covers the entire intended workflow: obtain hashes, make verified edits, and receive updated context. No obvious missing operation exists within the documented hashline scope.