Skip to main content
Glama

lookup_address

Find the ENS name associated with a blockchain address using the Alchemy MCP Plugin. Input an address to retrieve its corresponding Ethereum Name Service identifier.

Instructions

Lookup the ENS name for an address

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
addressYesThe address to lookup

Implementation Reference

  • index.ts:906-919 (registration)
    Registration of the lookup_address tool in the ListToolsRequestSchema handler. Defines the tool name, description, and input schema.
    { name: "lookup_address", description: "Lookup the ENS name for an address", inputSchema: { type: "object", properties: { address: { type: "string", description: "The address to lookup", }, }, required: ["address"], }, },
  • Type definition for the input parameters of the lookup_address tool.
    type LookupAddressParams = { address: string };
  • Helper function to validate if arguments match LookupAddressParams type for the lookup_address tool.
    const isValidLookupAddressParams = (args: any): args is LookupAddressParams => { return ( typeof args === "object" && args !== null && typeof args.address === "string" ); };

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/itsanishjain/alchemy-sdk-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server