MCP server
by justaname-id
Easily manage, lookup, and buy ENS domains with seamless integration to the Ethereum Name Service (ENSdomains) using fle
Provides tools to interact with the Ethereum Name Service (ENS) for resolving .eth names to addresses, checking availability, and retrieving domain records. Works with configurable Ethereum network providers.
Ethereum Name Service (ENS) is a community-built MCP server published by justaname-id that provides AI assistants with tools and capabilities via the Model Context Protocol. Easily manage, lookup, and buy ENS domains with seamless integration to the Ethereum Name Service (ENSdomains) using fle It is categorized under developer tools.
You can install Ethereum Name Service (ENS) in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Ethereum Name Service (ENS) is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
I recommend Ethereum Name Service (ENS) for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Ethereum Name Service (ENS) has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
We evaluated Ethereum Name Service (ENS) against two servers with overlapping tools; this profile had the clearer scope statement.
Ethereum Name Service (ENS) is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Ethereum Name Service (ENS) reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Ethereum Name Service (ENS) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Ethereum Name Service (ENS) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Ethereum Name Service (ENS) reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
According to our notes, Ethereum Name Service (ENS) benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Strong directory entry: Ethereum Name Service (ENS) surfaces stars and publisher context so we could sanity-check maintenance before adopting.
showing 1-10 of 65
MCP Server for Ethereum Name Service (ENS), enabling Claude to interact with the ENS system to resolve names, check availability, retrieve records, and more.
npm package: https://www.npmjs.com/package/mcp-server-ens
Resolve an ENS name to an Ethereum address
name (string): The ENS name to resolve (e.g., 'vitalik.eth')Get the ENS name for an Ethereum address
address (string): The Ethereum address to look upGet a text record for an ENS name
name (string): The ENS name to querykey (string): The record key to look up (e.g., 'email', 'url', 'avatar', 'description', 'twitter', etc.)Check if an ENS name is available for registration
name (string): The ENS name to checkGet all available information for an ENS name
name (string): The ENS name to queryGet subdomains for an ENS name
name (string): The ENS name to query for subdomainsGet the history of an ENS name
name (string): The ENS name to check history forGet the price to register an ENS name
name (string): The ENS name to check price forduration (number, default: 1): Registration duration in yearsgit clone https://github.com/JustaName-id/ens-mcp-server
npm i
.env file in the project root with the following (optional):PROVIDER_URL=https://your-provider-url.com,https://your-backup-provider.com
If no providers are specified, the server will use these defaults:
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"ens": {
"command": "npx",
"args": [
"-y",
"mcp-server-ens"
],
"env": {
"PROVIDER_URL": "https://your-provider-url.com,https://your-backup-provider.com"
}
}
}
}
{
"mcpServers": {
"ens": {
"command": "node",
"args": [
"/path/to/your/server.js"
],
"env": {
"PROVIDER_URL": "https://your-provider-url.com,https://your-backup-provider.com"
}
}
}
}
claude mcp add ens -- npx -y mcp-server-ens
With custom providers:
claude mcp add ens -e PROVIDER_URL="https://your-provider-url.com" -- npx -y mcp-server-ens
Verify it's connected:
claude mcp list
The server implements robust error handling for various scenarios:
All errors are normalized into user-friendly messages while preserving technical details for debugging.
To publish as an npm package:
npm publish --access public
If you encounter errors:
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.