DomainForAgents
/install domainforagents
DomainForAgents
Register and manage internet domains programmatically. No browser signup, no CAPTCHA.
When to use this skill
Use when the user wants to:
- Search for available domain names
- Get AI-generated domain name suggestions from a project description
- Register/purchase a domain
- Manage DNS records for a domain
- Check domain pricing and availability
- Renew a domain
- Set up webhooks for domain events
Setup
Option 1: MCP Server (recommended)
Install the MCP server for native tool access:
claude mcp add domainforagents -- npx @domainforagents/mcp
Set your API key:
export DOMAINFORAGENTS_API_KEY="your-key"
Option 2: REST API
Base URL: https://api.domainforagents.io/api/v1
All requests need Authorization: Bearer YOUR_API_KEY (except account creation).
Getting an API Key
No signup form needed. One API call:
curl -X POST https://api.domainforagents.io/api/v1/auth/register \
-H "Content-Type: application/json" \
-d '{"name": "my-agent"}'
Response includes api_key (use immediately) and claim_code (for human account access).
Core Operations
Search domains
curl "https://api.domainforagents.io/api/v1/domains/search?query=example.com" \
-H "Authorization: Bearer API_KEY"
AI domain suggestions
curl -X POST https://api.domainforagents.io/api/v1/domains/suggest \
-H "Authorization: Bearer API_KEY" \
-H "Content-Type: application/json" \
-d '{"description": "online store for vintage cameras"}'
Register a domain
curl -X POST https://api.domainforagents.io/api/v1/domains/register \
-H "Authorization: Bearer API_KEY" \
-H "Content-Type: application/json" \
-d '{"name": "example.com"}'
Create DNS record
curl -X POST https://api.domainforagents.io/api/v1/domains/DOMAIN_ID/dns \
-H "Authorization: Bearer API_KEY" \
-H "Content-Type: application/json" \
-d '{"name": "@", "type": "A", "content": "76.76.21.21", "ttl": 3600}'
Check balance
curl https://api.domainforagents.io/api/v1/balance \
-H "Authorization: Bearer API_KEY"
Get USDC deposit info
curl https://api.domainforagents.io/api/v1/payments/solana/deposit \
-H "Authorization: Bearer API_KEY"
Supported TLDs
.com, .net, .org, .io, .dev, .ai, .app, .co, .xyz, .me, .tech, .cloud, and more global TLDs. Country-code TLDs (.nz, .uk, .de) are not supported.
Payment Methods
- Prepaid balance: Fund via Stripe, spend from balance
- Credit card: Submit card at purchase time (Stripe tokenized)
- USDC: Send USDC on Solana to platform wallet
- Payment link: Reserve domain, get Stripe Checkout URL for human payment
Links
- Documentation: https://domainforagents.io/docs
- OpenAPI spec: https://api.domainforagents.io/api/openapi.json
- MCP server: https://www.npmjs.com/package/@domainforagents/mcp
- Web search: https://domainforagents.io/search?q=example.com
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install domainforagents - 安装完成后,直接呼叫该 Skill 的名称或使用
/domainforagents触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
DomainForAgents 是什么?
Search, register, and manage internet domains for AI agents via DomainForAgents API. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 71 次。
如何安装 DomainForAgents?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install domainforagents」即可一键安装,无需额外配置。
DomainForAgents 是免费的吗?
是的,DomainForAgents 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
DomainForAgents 支持哪些平台?
DomainForAgents 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 DomainForAgents?
由 midnight-rgb(@midnight-rgb)开发并维护,当前版本 v1.0.0。