Ellmos Clatcher MCP Server

Utility MCP server: JSON repair, encoding fixes, conversion, duplicates, batch rename, archives.

Remote serverstreamable-httpTypeScript

What is the Ellmos Clatcher MCP MCP server?

Utility MCP server: JSON repair, encoding fixes, conversion, duplicates, batch rename, archives. Exposed over MCP by the ellmos clatcher mcp mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

Use Clatcher when your agent needs reliable local maintenance tools for text files, data files, and project folders: repair invalid JSON, normalize encodings, convert formats, compare folders, rename files safely, and verify checksums without leaving the MCP workflow.

Its toolset

Everything the assistant can do here goes through one of these:

  • fix_json — Repair broken JSON: strip comments, trailing commas, single quotes, BOM/NUL
  • fix_encoding — Fix encoding issues: BOM removal, double-encoded UTF-8, cp1252 artifacts
  • fix_umlauts — Fix broken German umlauts from double-encoding (e.g. ä -> ä)
  • convert_format — Convert between JSON, YAML, TOML, XML, CSV, and INI
  • detect_dupes — Find duplicate files by content hash (SHA256), grouped by identical content
  • folder_diff — Compare two directories, or take a snapshot and diff on next call
  • batch_rename — Rename files using regex patterns, with dry-run preview
  • archive — Create, extract, or list ZIP archives
  • checksum — Calculate file hashes (SHA256, MD5, SHA1, SHA512) with optional verification
  • cleanup_file — Remove BOM, trailing whitespace, fix line endings, strip NUL bytes
  • scan_emoji — Find emoji characters in code files
  • regex_test — Test regex patterns against text, showing all matches with groups

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

Configuration

  • Node.js >= 18

When to reach for it

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. Ellmos Clatcher MCP's toolset — fix_json, fix_encoding, fix_umlauts and 9 more — is a fair guide to whether it matches your workflow. It is maintained by ellmos-ai; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 12 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Ellmos Clatcher MCP.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the ellmos clatcher mcp mcp server does with a few real requests.

Available tools

ToolWhat it does
fix_jsonRepair broken JSON: strip comments, trailing commas, single quotes, BOM/NUL
fix_encodingFix encoding issues: BOM removal, double-encoded UTF-8, cp1252 artifacts
fix_umlautsFix broken German umlauts from double-encoding (e.g. ä -> ä)
convert_formatConvert between JSON, YAML, TOML, XML, CSV, and INI
detect_dupesFind duplicate files by content hash (SHA256), grouped by identical content
folder_diffCompare two directories, or take a snapshot and diff on next call
batch_renameRename files using regex patterns, with dry-run preview
archiveCreate, extract, or list ZIP archives
checksumCalculate file hashes (SHA256, MD5, SHA1, SHA512) with optional verification
cleanup_fileRemove BOM, trailing whitespace, fix line endings, strip NUL bytes
scan_emojiFind emoji characters in code files
regex_testTest regex patterns against text, showing all matches with groups

How to install the Ellmos Clatcher MCP MCP server

{
  "mcpServers": {
    "ellmos-clatcher": {
      "command": "npx",
      "args": ["-y", "ellmos-clatcher-mcp"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js >= 18

Example prompts to try

  • Use Ellmos Clatcher MCP to fix json.
  • Use Ellmos Clatcher MCP to fix encoding.
  • Use Ellmos Clatcher MCP to fix umlauts.

Frequently asked questions

It connects Ellmos Clatcher MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 12 tools (fix_json, fix_encoding, fix_umlauts, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Ellmos Clatcher MCP directly.