decode_html

Pack: htmlentities · Endpoint: https://gateway.pipeworx.io/htmlentities/mcp

Decode HTML entities (named like & and numeric like © / ©) back to plain text. Keyless, offline.

Parameters

NameTypeRequiredDescription
textstringyesText containing HTML entities.

Example call

Arguments

{
  "text": "<div>Hello & goodbye</div>"
}

curl

curl -X POST https://gateway.pipeworx.io/htmlentities/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"decode_html","arguments":{"text":"<div>Hello & goodbye</div>"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('decode_html', {
  "text": "<div>Hello & goodbye</div>"
});

More examples

{
  "text": "Copyright © 2024"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "htmlentities": {
      "url": "https://gateway.pipeworx.io/htmlentities/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026