Text Processing
Convert halfwidth characters to fullwidth characters for CJK text formatting
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/halfwidth-to-fullwidth' \
-H 'Content-Type: application/json' \
-d '{"textInput":"Enter or paste your text with halfwidth characters here...\n\nExamples:\nHello World!\n1234567890\nABCDEFG\n!?,.;:()\n[]{}","conversionMode":"all","preserveLineBreaks":true,"showStatistics":true,"outputFormat":"converted"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/halfwidth-to-fullwidth| Name | Type | Required | Description |
|---|---|---|---|
| textInput | textarea | Yes | — |
| conversionMode | select | Yes | — |
| preserveLineBreaks | checkbox | No | Keep original line breaks and paragraph structure |
| showStatistics | checkbox | No | Display detailed statistics about the conversion process |
| outputFormat | select | Yes |
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-halfwidth-to-fullwidth": {
"name": "halfwidth-to-fullwidth",
"description": "Convert halfwidth characters to fullwidth characters for CJK text formatting",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=halfwidth-to-fullwidth",
"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": "halfwidth-to-fullwidth",
"arguments": {
"textInput": "Enter or paste your text with halfwidth characters here...\n\nExamples:\nHello World!\n1234567890\nABCDEFG\n!?,.;:()\n[]{}",
"conversionMode": "all",
"preserveLineBreaks": true,
"showStatistics": true,
"outputFormat": "converted"
}
}
}Questions or issues? Contact [email protected]
| — |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}