Skip to content
Back to search
100
MCP live MCP 2025-11-25 streamable-http

Text Tools

com.apished/text-tools

Exact character/word counting, reversal, palindrome checks, indexing, sorting; Unicode-safe.

Uptime
100.0%
1 direct probes · 30d
Response
173ms
last probe
Tools
7
callable
Resources
0
readable
Prompts
0
available

Tools · 7

text_charat

Returns the 0-indexed character (rune) at index in text.

text_count

Counts non-overlapping occurrences of substring in text (rune-safe, not byte-based).

text_palindrome

Checks whether text reads the same forwards and backwards. ignoreCase/ignoreNonAlnum default false (strict, literal comparison); set both true for phrase-style palindromes like "A man, a plan, a canal…

text_reverse

Reverses text by Unicode code point (rune), not grapheme cluster.

text_sort

Sorts text's characters or words alphabetically. by: "chars" (default, sorts runes, no separator) or "words" (splits on whitespace, rejoins with a single space).

text_stats

Descriptive statistics for text: rune/byte/word/line counts, a unique-rune count, a letters/digits/spaces/punctuation/other breakdown, an exact per-character frequency table, and word-length min/max/a…

text_wordcount

Counts whitespace-delimited words in text.

How to use

Add to your Claude Desktop / Cursor / Cline MCP config:

{
  "mcpServers": {
    "text_tools": {
      "url": "https://apished.com/mcp/v1/text",
      "transport": "streamable-http"
    }
  }
}