get-ens-address
Retrieve the Ethereum Name Service (ENS) address for a specified domain name, chain ID, and block number using MetaMask MCP server integration.
Instructions
Fetch the ENS address for name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blockNumber | No | Block number to get ENS address at. | |
chainId | No | ID of chain to use when fetching data. | |
name | Yes | Name to get the address for. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"blockNumber": {
"description": "Block number to get ENS address at.",
"format": "int64",
"type": "integer"
},
"chainId": {
"description": "ID of chain to use when fetching data.",
"type": "number"
},
"name": {
"description": "Name to get the address for.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}