MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

T
Thai Transliterate MCP

MCP server for Thai transliteration — exposes thai-transliterate as tools for LLMs

Created 2/24/2026
Updated about 21 hours ago
Repository documentation and setup instructions

thai-transliterate-mcp

MCP server and web UI for thai-transliterate — multi-variant Thai-to-Roman transliteration.

Quick Start

npm install

# Web UI + REST API on http://localhost:3000
npm run start:http

# MCP server (stdio transport, for Claude / IDE integration)
npm start

Web UI

Open http://localhost:3000 after starting the HTTP server. Type Thai text and see:

  • Best romanization
  • Ranked variant list with confidence weights
  • Match-against-English with edit distance scoring

MCP Tools

Four tools are exposed via the Model Context Protocol:

| Tool | Description | |------|-------------| | transliterate | Thai text to single best romanization | | transliterate_variants | Ranked list of romanization variants | | match_thai | Best match against an English target string | | transliterate_words | Per-word variant arrays |

Claude Desktop config

{
  "mcpServers": {
    "thai-transliterate": {
      "command": "node",
      "args": ["/path/to/thai-transliterate-mcp/src/index.js"]
    }
  }
}

API Endpoints

| Method | Path | Description | |--------|------|-------------| | GET | / | Web UI | | POST | /api/transliterate | REST API ({ thai, target?, maxVariants? }) | | GET | /api/version | Library and server version info | | GET | /health | Health check with version + commit | | POST | /mcp | MCP protocol (streamable HTTP transport) |

Deployment

Deploys to AWS ECS Fargate via GitHub Actions on push to main. The deploy pipeline auto-updates the thai-transliterate library to its latest version.

Request logging goes to DynamoDB (thai-transliterate-logs table) in production, or logs/requests.jsonl locally.

License

MIT

Quick Setup
Installation guide for this server

Install Package (if required)

npx @modelcontextprotocol/server-thai-transliterate-mcp

Cursor configuration (mcp.json)

{ "mcpServers": { "arjanvandermeer-thai-transliterate-mcp": { "command": "npx", "args": [ "arjanvandermeer-thai-transliterate-mcp" ] } } }