Format Conversion
Convert equations between AsciiMath, LaTeX and MathML: auto-detect the input format, produce canonical LaTeX, presentation MathML with an embedded TeX annotation, a best-effort AsciiMath back-translation, a screen-reader aria-label snippet (role=math), and a KaTeX HTML preview.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/asciimath-latex-mathml-equation-converter' \
-H 'Content-Type: application/json' \
-d '{"input":"sum_(i=1)^n (i^3)","fromFormat":"auto","displayMode":true,"includeAnnotation":true,"includeAriaLabel":true,"showPreview":true}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST http://127.0.0.1:3003/en/api/tools/asciimath-latex-mathml-equation-converter| Name | Type | Required | Description |
|---|---|---|---|
| input | textarea | Yes | — |
| fromFormat | select | No | — |
| displayMode | checkbox | No | Render as a display/block equation rather than inline. |
| includeAnnotation | checkbox | No | Wrap MathML in <semantics> with an <annotation> carrying the LaTeX source. |
| includeAriaLabel | checkbox | No |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-asciimath-latex-mathml-equation-converter": {
"name": "asciimath-latex-mathml-equation-converter",
"description": "Convert equations between AsciiMath, LaTeX and MathML: auto-detect the input format, produce canonical LaTeX, presentation MathML with an embedded TeX annotation, a best-effort AsciiMath back-translation, a screen-reader aria-label snippet (role=math), and a KaTeX HTML preview.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=asciimath-latex-mathml-equation-converter",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "asciimath-latex-mathml-equation-converter",
"arguments": {
"input": "sum_(i=1)^n (i^3)",
"fromFormat": "auto",
"displayMode": true,
"includeAnnotation": true,
"includeAriaLabel": true,
"showPreview": true
}
}
}| Expose the canonical LaTeX through aria-label on a role=math wrapper. |
| showPreview | checkbox | No | Server-side KaTeX HTML+MathML preview (front-end needs katex.min.css). |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]