aksara-mcp
Enables AI agents to transliterate between Latin-script Javanese and Aksara Jawa (Hanacaraka) bidirectionally.
README
aksara-mcp
MCP server that gives AI agents bidirectional transliteration between Latin-script Javanese and Aksara Jawa (Hanacaraka), powered by aksara-ts.
lamun sira nginguk ucing → ꦭꦩꦸꦤ꧀ꦱꦶꦫꦔꦶꦔꦸꦏꦸꦕꦶꦁ
ꦲꦤꦕꦫꦏ → hanacaraka
Aksara Jawa is essentially absent from LLM training data. This server lets agents read manuscript OCR output, transliterate user input, and work with Javanese script in both directions without guessing at rare Unicode codepoints.
Tools
| Tool | Direction | Description |
|---|---|---|
to_aksara |
Latin → Aksara | Convert Latin-script Javanese to Hanacaraka |
from_aksara |
Aksara → Latin | Decode Aksara Jawa back to Latin script |
to_aksara
| Parameter | Type | Default | Description |
|---|---|---|---|
text |
string |
— | Latin-script Javanese text |
spaces |
boolean |
false |
Preserve spaces in the output |
explicit_vowels |
boolean |
false |
Use standalone vowel letters (ꦄ ꦆ ꦈ ꦌ ꦎ) for vowels without a preceding consonant |
from_aksara
| Parameter | Type | Description |
|---|---|---|
text |
string |
Aksara Jawa text to decode |
Decoding handles murda consonants, retroflex letters (ṭ, ḍ), cakra (medial r), pengkal (medial y), and standalone vowel letters.
Install
npm install aksara-mcp
Or clone and build locally:
git clone https://github.com/thesimonharms/aksara-mcp.git
cd aksara-mcp
npm install
npm run build
Requires Node.js 18+.
MCP configuration
Cursor / Claude Desktop
{
"mcpServers": {
"aksara": {
"command": "node",
"args": ["/absolute/path/to/aksara-mcp/dist/index.js"]
}
}
}
If installed globally or via npx:
{
"mcpServers": {
"aksara": {
"command": "npx",
"args": ["aksara-mcp"]
}
}
}
Examples
Latin → Aksara
{ "text": "hanacaraka" }
→ ꦲꦤꦕꦫꦏ
{ "text": "aji saka", "spaces": true }
→ ꦲꦗꦶ ꦱꦏ
{ "text": "aksara", "explicit_vowels": true }
→ ꦄꦏ꧀ꦱꦫ
Aksara → Latin
{ "text": "ꦲꦤꦕꦫꦏ" }
→ hanacaraka
{ "text": "ꦧꦸꦟ꧀ꦝꦼꦭ꧀" }
→ bunḍel
Development
npm run build # bundle server to dist/
npm start # run on stdio
npm test # build + run cobasaja tests
Tests live in tests/ and use cobasaja to spawn the server over stdio and assert tool behaviour end-to-end.
Known limitations
Inherited from aksara-ts:
- ꦲ ambiguity — the glyph is both consonant
hand the carrier for standalone vowels.from_aksaraonꦲꦗꦶreturnshaji, notaji. Useexplicit_vowels: truewhen encoding if disambiguation matters. - Spaces — Aksara Jawa traditionally omits word boundaries. Pass
spaces: truetoto_aksaraif you need spaces preserved for round-tripping.
License
MIT © Simon Harms
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.