list_version

Pack: public-suffix-list · Endpoint: https://gateway.pipeworx.io/public-suffix-list/mcp

Last refresh + rule count.

Example call

Arguments

{}

curl

curl -X POST https://gateway.pipeworx.io/public-suffix-list/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_version","arguments":{}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('list_version', {});

Response shape

Always returns: refreshed_at, rule_lines

FieldTypeDescription
refreshed_atstringISO 8601 timestamp of last cache refresh
rule_linesintegerNumber of ICANN rule lines loaded
Full JSON Schema
{
  "type": "object",
  "properties": {
    "refreshed_at": {
      "type": "string",
      "description": "ISO 8601 timestamp of last cache refresh"
    },
    "rule_lines": {
      "type": "integer",
      "description": "Number of ICANN rule lines loaded"
    }
  },
  "required": [
    "refreshed_at",
    "rule_lines"
  ]
}

Connect

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

{
  "mcpServers": {
    "public-suffix-list": {
      "url": "https://gateway.pipeworx.io/public-suffix-list/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026