# Text Tools (remote · apished.com)

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

- Trust score: 63/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-20

## Components

- remote · `apished.com`: 63/100 (this document), [markdown](https://verifymcp.io/servers/com-apished-text-tools/mcp-v1-text.md), [page](https://verifymcp.io/servers/com-apished-text-tools/mcp-v1-text)

## Channel facts

- Endpoint: `https://apished.com/mcp/v1/text`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-20.

- **Endpoint Security**: 60/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 7 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC is configured correctly; the domain's records validate against the full chain to the root.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 76/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 372 tokens (~53/item across 7 items; 7 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 7/100
  - Stability observed for 2 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 79/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 25% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http com-apished-text-tools https://apished.com/mcp/v1/text
```

### Codex

```toml
[mcp_servers.com-apished-text-tools]
url = "https://apished.com/mcp/v1/text"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-apished-text-tools": {
      "type": "remote",
      "url": "https://apished.com/mcp/v1/text",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-apished-text-tools --url https://apished.com/mcp/v1/text --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-apished-text-tools:
    url: "https://apished.com/mcp/v1/text"
```

### Other

```json
{
  "mcpServers": {
    "com-apished-text-tools": {
      "type": "http",
      "url": "https://apished.com/mcp/v1/text"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-19 (score 63, +1)

- [functional improvement] Stability: unverified → 0.03

### 2026-08-18 (score 62)

First indexed and scored.

## MCP tools (7)

### `text_charat` (~43 tokens)

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

Input parameters:

- `index` (integer, required): 0-indexed
- `text` (string, required)

### `text_count` (~44 tokens)

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

Input parameters:

- `substring` (string, required): must be non-empty
- `text` (string, required)

### `text_palindrome` (~81 tokens)

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: Panama".

Input parameters:

- `ignoreCase` (boolean)
- `ignoreNonAlnum` (boolean)
- `text` (string, required)

### `text_reverse` (~32 tokens)

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

Input parameters:

- `text` (string, required)

### `text_sort` (~70 tokens)

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

Input parameters:

- `by` (string): chars (default) or words
- `text` (string, required)

### `text_stats` (~78 tokens)

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).

Input parameters:

- `text` (string, required)

Output parameters:

- `bytes` (integer)
- `charFrequency` (object)
- `charTypes` (object)
- `lines` (integer)
- `runes` (integer)
- `uniqueRunes` (integer)
- `wordLengths` (object)
- `words` (integer)

### `text_wordcount` (~24 tokens)

Counts whitespace-delimited words in text.

Input parameters:

- `text` (string, required)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/com-apished-text-tools/mcp-v1-text#diagnostics

## Score history

- 2026-08-20: 63
- 2026-08-19: 63
- 2026-08-18: 62

## Links

- Remote endpoint: https://apished.com/mcp/v1/text
- Website: https://apished.com/
- Changelog RSS feed: https://verifymcp.io/servers/com-apished-text-tools/mcp-v1-text.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-apished-text-tools/mcp-v1-text.json
- HTML version of this page: https://verifymcp.io/servers/com-apished-text-tools/mcp-v1-text
