mcp-texttools 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +49 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,4 +1,45 @@
1
+ # mcp-texttools
1
2
 
3
+ MCP server with **15 text transformation tools** for Claude Desktop, Cursor, and any MCP-compatible AI assistant.
4
+
5
+ ## Install
6
+
7
+ ```json
8
+ {
9
+ "mcpServers": {
10
+ "texttools": {
11
+ "command": "npx",
12
+ "args": ["-y", "mcp-texttools"]
13
+ }
14
+ }
15
+ }
16
+ ```
17
+
18
+ ## Tools
19
+
20
+ | Tool | Description |
21
+ |------|-------------|
22
+ | `case_convert` | Convert between camelCase, snake_case, kebab-case, PascalCase, CONSTANT_CASE, Title Case, dot.case |
23
+ | `slugify` | Convert text to a URL-friendly slug |
24
+ | `word_count` | Count words, characters, sentences, paragraphs, estimate reading time |
25
+ | `lorem_ipsum` | Generate lorem ipsum placeholder text (words, sentences, paragraphs) |
26
+ | `truncate` | Truncate text at character, word, or sentence boundary with custom suffix |
27
+ | `regex_replace` | Find and replace using regular expressions with capture groups |
28
+ | `markdown_strip` | Strip markdown formatting to get plain text |
29
+ | `text_reverse` | Reverse text by characters, words, or lines |
30
+ | `line_sort` | Sort lines alphabetically, numerically, by length, or randomly; deduplicate |
31
+ | `text_diff` | Compare two texts and show line-by-line differences |
32
+ | `extract_emails` | Extract all email addresses from text |
33
+ | `extract_urls` | Extract all URLs from text |
34
+ | `text_pad` | Pad text to fixed width — left, right, or center aligned |
35
+ | `text_wrap` | Wrap text to specified line width at word boundaries |
36
+ | `string_repeat` | Repeat a string N times with optional separator |
37
+
38
+ ## Why use this?
39
+
40
+ - **Zero config** — `npx` and go, no API keys needed
41
+ - **15 tools** — covers the most common text transformation tasks
42
+ - **Works everywhere** — Claude Desktop, Cursor, Windsurf, any MCP client
2
43
 
3
44
  ## Support
4
45
 
@@ -6,3 +47,11 @@ If this tool saves you time, consider supporting development:
6
47
 
7
48
  - [Buy me a coffee](https://buymeacoffee.com/gl89tu25lp)
8
49
  - [Tip via Stripe ($3)](https://buy.stripe.com/dRm8wP8R295Z9VyeN59Zm00)
50
+
51
+ ## Like this? Try mcp-devutils
52
+
53
+ **[mcp-devutils](https://www.npmjs.com/package/mcp-devutils)** — 44 developer tools in one MCP server. UUID, hash, JWT, JSON diff, AES encryption, and more. 15 free, [unlock all 44 for $5](https://buy.stripe.com/bJe00jgjugyr5Fi5cv9Zm05).
54
+
55
+ ## License
56
+
57
+ MIT
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mcp-texttools",
3
- "version": "1.1.0",
4
- "description": "MCP server with 15 text transformation tools \u2014 case conversion, slug, word count, lorem ipsum, truncate, regex replace, markdown strip, reverse, line sort, text diff, extract emails, extract URLs, text pad, text wrap, string repeat",
3
+ "version": "1.1.1",
4
+ "description": "MCP server with 15 text transformation tools case conversion, slug, word count, lorem ipsum, truncate, regex replace, markdown strip, reverse, line sort, text diff, extract emails, extract URLs, text pad, text wrap, string repeat",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "bin": {