Text Tools
com.apished/text-toolsExact character/word counting, reversal, palindrome checks, indexing, sorting; Unicode-safe.
Tools · 7
Returns the 0-indexed character (rune) at index in text.
Counts non-overlapping occurrences of substring in text (rune-safe, not byte-based).
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…
Reverses text by Unicode code point (rune), not grapheme cluster.
Sorts text's characters or words alphabetically. by: "chars" (default, sorts runes, no separator) or "words" (splits on whitespace, rejoins with a single space).
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…
Counts whitespace-delimited words in text.
Similar MCP servers embedding-nearest
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"
}
}
}