ENS MCP Server
Enables AI assistants to interact with the Ethereum Name Service via natural language, supporting lookups, availability checks, pricing, subnames, and onchain records.
README
ENS MCP Server
Give your AI assistant native access to the ENS (Ethereum Name Service). Look up ENS names, profile information, check name availability, get pricing, explore subnames, and query onchain records — all through natural language.
Installation
Connect to ENS MCP Server:
https://ens-mcp.namespace.ninja/mcp
<details> <summary><b>Cursor</b></summary>
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"ens": {
"url": "https://ens-mcp.namespace.ninja/mcp"
}
}
}
</details>
<details> <summary><b>VS Code</b></summary>
Add to .vscode/mcp.json:
{
"servers": {
"ens": {
"type": "http",
"url": "https://ens-mcp.namespace.ninja/mcp"
}
}
}
</details>
<details> <summary><b>Claude Code</b></summary>
claude mcp add --transport http ens https://ens-mcp.namespace.ninja/mcp
</details>
<details> <summary><b>Claude Desktop</b></summary>
Add to your config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"ens": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://ens-mcp.namespace.ninja/mcp"]
}
}
}
</details>
<details> <summary><b>Codex</b></summary>
codex mcp add ens --url https://ens-mcp.namespace.ninja/mcp
</details>
<details> <summary><b>OpenCode</b></summary>
Add to your opencode.json:
{
"mcp": {
"ens": {
"type": "remote",
"url": "https://ens-mcp.namespace.ninja/mcp",
"enabled": true
}
}
}
</details>
<details> <summary><b>Antigravity</b></summary>
Open the MCP Store panel (from the "..." dropdown in the side panel), then add a custom server with:
https://ens-mcp.namespace.ninja/mcp
</details>
<details> <summary><b>Windsurf</b></summary>
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"ens": {
"serverUrl": "https://ens-mcp.namespace.ninja/mcp"
}
}
}
</details>
<details> <summary><b>Zed</b></summary>
Add to your Zed settings:
{
"context_servers": {
"ens": {
"url": "https://ens-mcp.namespace.ninja/mcp"
}
}
}
</details>
<details> <summary><b>Gemini CLI</b></summary>
Add to ~/.gemini/settings.json:
{
"mcpServers": {
"ens": {
"httpUrl": "https://ens-mcp.namespace.ninja/mcp"
}
}
}
</details>
<details> <summary><b>Warp</b></summary>
Go to Settings > MCP Servers > Add MCP Server and add:
{
"ens": {
"url": "https://ens-mcp.namespace.ninja/mcp"
}
}
</details>
<details> <summary><b>Kiro</b></summary>
Add to ~/.kiro/settings/mcp.json:
{
"mcpServers": {
"ens": {
"url": "https://ens-mcp.namespace.ninja/mcp"
}
}
}
</details>
<details> <summary><b>Roo Code</b></summary>
Add to your Roo Code MCP config:
{
"mcpServers": {
"ens": {
"type": "streamable-http",
"url": "https://ens-mcp.namespace.ninja/mcp"
}
}
}
</details>
<details> <summary><b>Other Clients</b></summary>
For clients that support remote MCP:
{
"mcpServers": {
"ens": {
"url": "https://ens-mcp.namespace.ninja/mcp"
}
}
}
For clients that need mcp-remote:
{
"mcpServers": {
"ens": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://ens-mcp.namespace.ninja/mcp"]
}
}
}
</details>
<details> <summary><b>Self-Hosting</b></summary>
You can also self-host the ENS MCP Server using the npm package.
Stdio Transport:
npx -y ens-mcp
HTTP Transport:
npx -y ens-mcp --http --port 8080
The server will be available at http://localhost:8080/mcp.
Environment Variables:
| Variable | Description | Default |
|---|---|---|
RPC_URL |
Ethereum mainnet RPC URL | Viem Provided Public RPC |
SUBGRAPH_URL |
ENS subgraph URL | ENSNode Public Subgraph |
Example with custom RPC and Subgraph:
RPC_URL=https://your-rpc-provider.com SUBGRAPH_URL=https://your-subgraph-provider.com npx -y ens-mcp
</details>
💬 Example Natural Language Queries
Once ENS MCP is installed, you can ask things like:
1️⃣ Basic Lookup
> Who owns vitalik.eth?
2️⃣ Resolver & Expiry
> What is the resolver and expiry date of vitalik.eth?
3️⃣ Records & Addresses
> Give me the ETH address and Twitter handle for vitalik.eth.
4️⃣ Reverse Lookup
> What ENS names are owned by 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045?
5️⃣ Subnames
> List all subdomains under base.eth.
6️⃣ Portfolio Analysis
> Show me all ENS names owned by this address and tell me which ones are expiring soon.
7️⃣ Conditional Acquisition Strategy
> I want to get example.eth. How much does it cost for 2 years? And if it’s not available, give me the owner details and socials so I can contact them.
8️⃣ Names for Address
> What are the names owned by 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045?
9️⃣ Subnames for Name
> What are the subnames under vitalik.eth?
1️⃣0️⃣ Name History
> when was the last time vitalik.eth changed its content hash?
Available Tools
| Tool | Description |
|---|---|
is_name_available |
Check whether an ENS name is currently available for registration |
get_name_price |
Get the registration price for a name at a given duration (in seconds) |
get_profile_details |
Fetch full ENS profile: owner, resolver, expiry, text records, address records, and contenthash |
get_names_for_address |
List all ENS names held by a given address |
get_subnames_for_name |
Retrieve all subdomains registered under a parent ENS name |
get_name_history |
Retrieve the event history of any ENS name |
get_subgraph_records |
Query all record keys associated with a name |
Contributing
Contributions are welcome. Feel free to open a PR.
Built with ❤️ by Namespace Ninjas 🥷
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。