Summary
The scratch-pad text utilities, kept off the web.
These are the jobs people usually solve by pasting text into an unknown website — Base64, hashes, case conversion, JSON tidying. Doing them locally means the content never leaves the machine, which matters more for the log excerpt than for the lorem ipsum.
What it is
A TypeScript MCP server for text processing, formatting and analysis that runs entirely on your machine.
What you get
- Case conversion between camelCase, snake_case, kebab-case, PascalCase and CONSTANT_CASE
- Text cleaning: extra spaces removed, lines trimmed, line breaks normalised, HTML tags stripped
- Analysis with statistics, readability scores and keyword frequency
- Encoding conversion across Base64, URL encoding, HTML entities and Unicode escaping
- Extraction of emails, URLs, numbers and IP addresses out of a block of text
- JSON formatting and minification, and CSV to JSON conversion in both directions
- Hash generation for MD5, SHA1, SHA256 and SHA512
- Generation of Lorem Ipsum, passwords, UUIDs, fake data and Markdown tables
- Markdown, HTML and plain-text conversion between each other
Requirements
Node.js 14 or higher and a local build — clone, npm install, npm run build, then point your client at dist/index.js. No key, and no network call: processing happens locally.
