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
| Field | Type | Description |
|---|---|---|
refreshed_at | string | ISO 8601 timestamp of last cache refresh |
rule_lines | integer | Number 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.