io.github.cc1a2b/arabicfmt-mcp
NPM · ARABICFMT-MCP · SCANNED AUG 3
Arabic formatting: 22 Arab currencies (Saudi riyal U+20C1), Hijri dates, تفقيط, RTL/bidi fixes.
Available components
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 Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 30 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability83
- AI-judged instruction clarity (excellent).Pass
- Tool/resource definitions use about 1771 tokens (~104/item across 17 items; 17 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.
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 · arabicfmt-mcp
claude mcp add cc1a2b-arabicfmt-mcp -- npx -y arabicfmt-mcp
codex mcp add cc1a2b-arabicfmt-mcp -- npx -y arabicfmt-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"cc1a2b-arabicfmt-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"arabicfmt-mcp"
],
"enabled": true
}
}
} openclaw mcp add cc1a2b-arabicfmt-mcp --command npx --arg -y --arg arabicfmt-mcp
mcp_servers:
cc1a2b-arabicfmt-mcp:
command: "npx"
args: ["-y", "arabicfmt-mcp"] {
"mcpServers": {
"cc1a2b-arabicfmt-mcp": {
"command": "npx",
"args": [
"-y",
"arabicfmt-mcp"
]
}
}
} 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.
- 2 Aug 26 +46
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
- Schema quality: unverified → excellent ▲ functional
- License: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Maintenance: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Licence: MIT functional
- 31 Jul 26 −25
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 30 Jul 26 +22
- Tool coverage: unverified → 100 ▲ functional
- 28 Jul 26 −22
- Tool coverage: 100 → unverified ▼ functional
- First check of Schema quality: unverified functional
- 27 Jul 26 46
First indexed and scored.
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 3 Aug 2026 · Analysed npm/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 95 packages
95 packages in the resolved dependency tree · 94 deprecated · 29 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
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.
arabic_ordinal ~59
Convert an integer to its Arabic ordinal words (e.g. 25 -> "الخامس والعشرون").
| Name | Type | Req | Description |
|---|---|---|---|
| feminine | boolean | — | Use feminine grammatical gender. |
| n | integer | yes | The integer to convert to an Arabic ordinal. |
No output schema declared.
No examples provided.
arabic_plural ~89
Select the correct Arabic plural form for a count from the six CLDR categories (e.g. 5 books -> "كتب"). Returns the chosen word.
| Name | Type | Req | Description |
|---|---|---|---|
| forms | object | yes | Arabic plural forms keyed by CLDR category. 'other' is required; 'zero','one','two','few','many' are optional. |
| n | number | yes | The count that selects the plural form. |
No output schema declared.
No examples provided.
arabic_to_words ~81
Convert an integer to its full Arabic cardinal words (e.g. 1234567 -> "مليون ومئتان وأربعة وثلاثون ألفاً وخمسمئة وسبعة وستون").
| Name | Type | Req | Description |
|---|---|---|---|
| feminine | boolean | — | Use feminine grammatical gender for the counted noun. |
| n | integer | yes | The integer to convert to Arabic words. |
No output schema declared.
No examples provided.
format_compact ~146
Format a number in compact notation with Arabic scale words (e.g. 1200000 with locale "ar" -> "1.2 مليون").
| Name | Type | Req | Description |
|---|---|---|---|
| compactDisplay | string | — | Compact form: 'short' or 'long'. |
| locale | string | — | BCP-47 locale, e.g. 'ar', 'ar-SA', 'en'. Defaults to 'ar'. |
| numerals | string | — | Numeral system: 'latn' (1234), 'arab' (Eastern Arabic ١٢٣٤), or 'arabext' (Persian/Urdu ۱۲۳۴). |
| value | number | yes | The number to format compactly. |
No output schema declared.
No examples provided.
format_currency ~192
Format a number as an Arabic currency amount with the correct symbol, grouping, and decimal precision (e.g. 1234.5 SAR -> "1,234.50 ر.س"). Handles the 2025-2026 Unicode currency-symbol transition (Saudi Riyal U+20C1, etc.).
| Name | Type | Req | Description |
|---|---|---|---|
| amount | number | yes | The monetary amount to format. |
| currency | string | — | ISO 4217 currency code, e.g. 'SAR', 'AED', 'KWD'. Defaults to SAR-area default. |
| locale | string | — | BCP-47 locale, e.g. 'ar', 'ar-SA', 'en'. Defaults to 'ar'. |
| numerals | string | — | Numeral system: 'latn' (1234), 'arab' (Eastern Arabic ١٢٣٤), or 'arabext' (Persian/Urdu ۱۲۳۴). |
No output schema declared.
No examples provided.
format_duration ~121
Format a duration in milliseconds as natural Arabic words (e.g. 7500000 -> "ساعتان وخمس دقائق").
| Name | Type | Req | Description |
|---|---|---|---|
| locale | string | — | BCP-47 locale, e.g. 'ar', 'ar-SA', 'en'. Defaults to 'ar'. |
| numerals | string | — | Numeral system: 'latn' (1234), 'arab' (Eastern Arabic ١٢٣٤), or 'arabext' (Persian/Urdu ۱۲۳۴). |
| value | number | yes | Duration in milliseconds. |
No output schema declared.
No examples provided.
format_hijri ~172
Format a Gregorian date as a Hijri (Islamic) date string with Arabic month names and era (e.g. 2025-09-23 -> "٢٣ رمضان ١٤٤٧ هـ").
| Name | Type | Req | Description |
|---|---|---|---|
| date | string | yes | Gregorian date as ISO 8601 string, e.g. '2025-09-23' or '2025-09-23T00:00:00Z'. |
| locale | string | — | BCP-47 locale, e.g. 'ar', 'ar-SA', 'en'. Defaults to 'ar'. |
| numerals | string | — | Numeral system: 'latn' (1234), 'arab' (Eastern Arabic ١٢٣٤), or 'arabext' (Persian/Urdu ۱۲۳۴). |
No output schema declared.
No examples provided.
format_number ~144
Format a number with locale-aware grouping, decimal separators, and optional Eastern Arabic numerals (e.g. 1234567.89 with numerals "arab" -> "١٬٢٣٤٬٥٦٧٫٨٩").
| Name | Type | Req | Description |
|---|---|---|---|
| locale | string | — | BCP-47 locale, e.g. 'ar', 'ar-SA', 'en'. Defaults to 'ar'. |
| numerals | string | — | Numeral system: 'latn' (1234), 'arab' (Eastern Arabic ١٢٣٤), or 'arabext' (Persian/Urdu ۱۲۳۴). |
| value | number | yes | The number to format. |
No output schema declared.
No examples provided.
format_relative_time ~165
Format a date relative to a base date in Arabic (e.g. three days ago -> "منذ ٣ أيام"). Defaults the base to now.
| Name | Type | Req | Description |
|---|---|---|---|
| base | string | — | Base/reference date as ISO 8601 string. Defaults to the current time. |
| date | string | yes | Target date as ISO 8601 string, e.g. '2025-09-20'. |
| locale | string | — | BCP-47 locale, e.g. 'ar', 'ar-SA', 'en'. Defaults to 'ar'. |
| numerals | string | — | Numeral system: 'latn' (1234), 'arab' (Eastern Arabic ١٢٣٤), or 'arabext' (Persian/Urdu ۱۲۳۴). |
No output schema declared.
No examples provided.
isolate_foreign ~70
Wrap foreign/LTR runs (phone numbers, Latin text, URLs) inside Arabic text with Unicode bidi isolates so they render correctly in RTL contexts (e.g. "اتصل على +1 (555) 234-5678 الآن").
| Name | Type | Req | Description |
|---|---|---|---|
| text | string | yes | The mixed-direction text to process. |
No output schema declared.
No examples provided.
parse_number ~91
Parse a string containing Latin or Eastern Arabic digits (with Arabic grouping/decimal separators) into a JavaScript number (e.g. "١٬٢٣٤٫٥٦" -> 1234.56). Returns the number as a string.
| Name | Type | Req | Description |
|---|---|---|---|
| input | string | yes | The numeric string to parse, e.g. '١٬٢٣٤٫٥٦' or '1,234.56'. |
No output schema declared.
No examples provided.
slugify ~62
Convert Arabic (or mixed) text into a URL-safe slug (e.g. "مدينة جدة" -> "mdynh-jdh").
| Name | Type | Req | Description |
|---|---|---|---|
| separator | string | — | Word separator character. Defaults to '-'. |
| text | string | yes | The text to slugify. |
No output schema declared.
No examples provided.
spell_currency ~128
Spell out a currency amount in full Arabic words, including the major and minor units with correct grammatical agreement (e.g. 1234.5 SAR -> "ألف ومئتان وأربعة وثلاثون ريالاً وخمسون هللة").
| Name | Type | Req | Description |
|---|---|---|---|
| amount | number | yes | The monetary amount to spell out. |
| currency | string | — | ISO 4217 currency code, e.g. 'SAR', 'AED', 'KWD'. |
| locale | string | — | BCP-47 locale, e.g. 'ar', 'ar-SA', 'en'. Defaults to 'ar'. |
No output schema declared.
No examples provided.
to_hijri ~66
Convert a Gregorian date to its Hijri components. Returns a JSON object string like {"year":1447,"month":9,"day":23}.
| Name | Type | Req | Description |
|---|---|---|---|
| date | string | yes | Gregorian date as ISO 8601 string, e.g. '2025-09-23'. |
No output schema declared.
No examples provided.
transliterate ~46
Transliterate Arabic text to Latin script (e.g. "مُحَمَّد" -> "muhammad").
| Name | Type | Req | Description |
|---|---|---|---|
| text | string | yes | The Arabic text to transliterate. |
No output schema declared.
No examples provided.
validate_iban ~76
Validate an IBAN (International Bank Account Number) using its checksum and country length (e.g. "SA03 8000 0000 6080 1016 7519" -> "true"). Returns "true" or "false".
| Name | Type | Req | Description |
|---|---|---|---|
| iban | string | yes | The IBAN to validate; spaces are allowed. |
No output schema declared.
No examples provided.
validate_saudi_id ~63
Validate a Saudi national/iqama ID number using its Luhn-style checksum (e.g. "1012345672" -> "true"). Returns "true" or "false".
| Name | Type | Req | Description |
|---|---|---|---|
| id | string | yes | The 10-digit Saudi ID number to validate. |
No output schema declared.
No examples provided.