extract_links

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

Extract all hyperlinks from HTML as {href, text} pairs (keyless, offline).

Parameters

NameTypeRequiredDescription
htmlstringyesThe HTML.

Example call

Arguments

{
  "html": "<html><body><a href=\"https://example.com\">Example Site</a><a href=\"/about\">About Us</a></body></html>"
}

curl

curl -X POST https://gateway.pipeworx.io/htmltext/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"extract_links","arguments":{"html":"<html><body><a href=\"https://example.com\">Example Site</a><a href=\"/about\">About Us</a></body></html>"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('extract_links', {
  "html": "<html><body><a href=\"https://example.com\">Example Site</a><a href=\"/about\">About Us</a></body></html>"
});

More examples

{
  "html": "<p>Check out <a href=\"https://github.com\">GitHub</a> and <a href=\"https://docs.example.com\">our docs</a>.</p>"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026