escape_string
Pack: unicode · Endpoint: https://gateway.pipeworx.io/unicode/mcp
Escape a string. format = “js” (\uXXXX), “html” (&#xNN;), “url” (percent-encoding), or “all-nonascii” (js-escape only non-ASCII). Keyless, offline.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
text | string | yes | The text to escape. |
format | string | no | js | html | url | all-nonascii (default js). |
Example call
curl -X POST https://gateway.pipeworx.io/unicode/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"escape_string","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"unicode": {
"url": "https://gateway.pipeworx.io/unicode/mcp"
}
}
}
See Getting Started for client-specific install steps.