Skip to main content
Glama
get-ens-name.ts1.03 kB
import { FastMCP } from "fastmcp"; import { z } from "zod"; import { getEnsName} from "@wagmi/core" import { wagmiConfig } from "../wagmi-config.js"; import { type Address } from "viem"; export function registerGetENSNameTools(server: FastMCP): void { server.addTool({ name: "get-ens-name", description: "Get the primary ENS name for address", parameters: z.object({ address: z.string(), chainId: z.coerce.number().optional(), blockNumber: z.coerce.number().optional(), }), execute: async (args) => { const address = args.address as Address const chainId = args.chainId as typeof wagmiConfig['chains'][number]['id'] const blockNumber = args.blockNumber ? BigInt(args.blockNumber) : undefined const result = await getEnsName(wagmiConfig, { address, blockNumber, chainId, }) return { content: [ { type: "text", text: result ?? "undefined", }, ], } }, }); };

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/Xiawpohr/mcpilot'

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