resolve_ens
Pack: ens · Endpoint: https://gateway.pipeworx.io/ens/mcp
Resolve an ENS name (e.g. “vitalik.eth”) to its Ethereum address and profile records (avatar, description, socials: twitter/github/discord/email/url). Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | An ENS name, e.g. “nick.eth”. |
Example call
Arguments
{
"name": "vitalik.eth"
}
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":"resolve_ens","arguments":{"name":"vitalik.eth"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('resolve_ens', {
"name": "vitalik.eth"
});
More examples
{
"name": "nick.eth"
}
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.