INDIVIDUAL MCP TOOL
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/average plus the actual shortest/longest word (ties resolve to the first occurrence).
LIVE ENDPOINT
https://apished.com/mcp/v1/text
Connect to this endpoint to inspect the live schema for text_stats and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.apished-text]
url = "https://apished.com/mcp/v1/text"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"apished-text": {
"type": "http",
"url": "https://apished.com/mcp/v1/text"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: apished-text
Remote MCP URL: https://apished.com/mcp/v1/text
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"apished-text": {
"url": "https://apished.com/mcp/v1/text"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"apished-text": {
"type": "http",
"url": "https://apished.com/mcp/v1/text"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "apished-text",
"transport": "streamable-http",
"url": "https://apished.com/mcp/v1/text"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
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.text_reverse— Reverses text by Unicode code point (rune), not grapheme cluster.text_sort— Sorts text's characters or words alphabetically.text_wordcount— Counts whitespace-delimited words in text.