Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

RTL awareness for coding agents

NPM · RTL-MCP · SCANNED AUG 15

Give coding agents right-to-left awareness: lint, normalise Arabic, detect direction.

Available components

75 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security100
  • No malware found by supply-chain analysis.Pass
  • No known CVEs affecting this package version or its production dependencies.Pass
  • No install/post-install scripts declared.Pass
  • 0 of 1 dependencies flagged as unhealthy. View diagnostics → Pass
Provenance & Transparency71
  • Repository check failed: no source repository is declared. See how to fix → View diagnostics → Fail
  • Cryptographically verified build provenance (signed, bound to kahlelhawary-art/rtl-mcp). View diagnostics → Pass
  • Clear OSI-approved license (MIT).Pass
  • Actively maintained (last published 5 days ago).Pass
  • Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability80
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 465 tokens (~116/item across 4 items; 4 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

Unverified: 1 category

A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · rtl-mcp

# add to Claude Code
claude mcp add kahlelhawary-art-rtl-mcp -- npx -y rtl-mcp
# add to Codex CLI
codex mcp add kahlelhawary-art-rtl-mcp -- npx -y rtl-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "kahlelhawary-art-rtl-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "rtl-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add kahlelhawary-art-rtl-mcp --command npx --arg -y --arg rtl-mcp
# ~/.hermes/config.yaml
mcp_servers:
  kahlelhawary-art-rtl-mcp:
    command: "npx"
    args: ["-y", "rtl-mcp"]
// mcp.json
{
  "mcpServers": {
    "kahlelhawary-art-rtl-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "rtl-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 13 Aug 26 0
    • Security disclosure: unverified → fail functional
  • 12 Aug 26 0
    • Security disclosure: fail → unverified functional
  • 11 Aug 26 0
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 9 Aug 26 75

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 15 Aug 2026 · Analysed npm/rtl-mcp@0.2.1

Provenance Verified

A signed build attestation was found and verified, binding this exact artifact to the source repository it claims to come from.

Result Verified
Ecosystem npm
Reason Verified
Discovered via Registry attestation endpoint
Source repo kahlelhawary-art/rtl-mcp
Certificate issuer https://token.actions.githubusercontent.com
Certificate SAN https://github.com/kahlelhawary-art/rtl-mcp/.github/workflows/publish.yml@refs/heads/main
Rekor log index 2392697167
Predicate type https://slsa.dev/provenance/v1
Subject digest sha512:8ddfd2d8936430b3c088c8b3e55898baeaa54badc8bae8a44ed32924b365f1b89d099d08f935aca51c60b3ff3dc4673cb6858fff100a9fb00c158b52a
Dependencies 1 package
Packages resolved 1
Tree resolution Complete
MCP tools · 4 exposed · ~465 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
detect_direction ~67

Report whether a string is predominantly right-to-left, left-to-right, mixed or neutral, and what to set dir to. Use it when you need to decide the direction of a label, a database field or a block of user content.

NameTypeReqDescription
textstringyesThe text to inspect.

No output schema declared.

No examples provided.

lint_rtl_code ~160

Check a snippet of CSS, HTML, JSX or TSX for layout that breaks in right-to-left languages: physical CSS properties, directional Tailwind utilities, and dir problems. Returns each finding with the logical replacement. Use this before handing RTL-facing markup back to the user.

NameTypeReqDescription
baseDirstringThe base direction of the document. Pass "rtl" when the app root is <html dir="rtl">: in an Arabic-first app "right" is the start side, so the logical replacement is the opposite one. Default "ltr".
codestringyesThe source to check.
filenamestringyesA filename such as Button.tsx or theme.css. Only the extension matters — it selects which rules run.

No output schema declared.

No examples provided.

lint_rtl_path ~75

Check a file or a whole directory on disk for right-to-left layout problems. Skips node_modules and build output.

NameTypeReqDescription
baseDirstringBase direction of the app. Pass "rtl" for an Arabic-first codebase. Default "ltr".
pathstringyesFile or directory path to check.

No output schema declared.

No examples provided.

normalize_arabic ~163

Normalise Arabic text so that forms users type interchangeably compare equal — strips diacritics and tatweel and folds the alef variants. Use it for search keys, deduplication and matching, never for text you are about to display.

NameTypeReqDescription
collapseWhitespacebooleanCollapse whitespace runs. Default false.
convertDigitsbooleanConvert Arabic-Indic digits into 0-9. Default false.
textstringyesThe Arabic text to normalise.
unifyAlefMaqsurabooleanFold ى into ي. Helps fuzzy matching, changes meaning. Default false.
unifyTaaMarbutabooleanFold ة into ه. Helps fuzzy matching, changes meaning. Default false.

No output schema declared.

No examples provided.