char_info
Pack: unicode · Endpoint: https://gateway.pipeworx.io/unicode/mcp
Inspect each character of a string (up to 64): Unicode code point (U+ hex + decimal), UTF-8 byte sequence, UTF-16 code units, HTML numeric entity, and general category. Keyless, offline.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
text | string | yes | The text to inspect. |
Example call
Arguments
{
"text": "Hello🌍"
}
curl
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":"char_info","arguments":{"text":"Hello🌍"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('char_info', {
"text": "Hello🌍"
});
More examples
{
"text": "café"
}
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.