reverse_ens
Pack: ens · Endpoint: https://gateway.pipeworx.io/ens/mcp
Reverse-resolve an Ethereum address (0x…) to its primary ENS name and profile records. Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
address | string | yes | An Ethereum address, e.g. “0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045”. |
Example call
Arguments
{
"address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
}
curl
curl -X POST https://gateway.pipeworx.io/ens/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"reverse_ens","arguments":{"address":"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('reverse_ens', {
"address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
});
More examples
{
"address": "0x225f137127d9067798653ba4b6baf0e682fab0d1"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ens": {
"url": "https://gateway.pipeworx.io/ens/mcp"
}
}
}
See Getting Started for client-specific install steps.