Sign In

@domainforagents/mcp

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@domainforagents/mcp

MCP server for DomainForAgents — AI agents can search, register, and manage domains as native tools

latest
npmnpm
Version
1.2.1
Version published
Maintainers
1
Created
Source

@domainforagents/mcp

MCP server for DomainForAgents — register and manage internet domains as native AI agent tools.

What This Does

This MCP server lets any MCP-compatible AI agent (Claude, GPT, Gemini, etc.) discover and use DomainForAgents as a native tool. Agents can:

  • Search domain availability with pricing
  • Register domains with balance, card, or USDC payment
  • Reserve domains with TTL-based soft holds
  • Manage DNS records (A, AAAA, CNAME, MX, TXT, etc.)
  • Set nameservers, renew domains, manage webhooks
  • Check balance and get USDC deposit instructions

Quick Setup

Claude Desktop

Add to ~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "domainforagents": {
      "command": "npx",
      "args": ["@domainforagents/mcp"],
      "env": {
        "DOMAINFORAGENTS_API_KEY": "your-api-key"
      }
    }
  }
}

Claude Code

claude mcp add domainforagents -- npx @domainforagents/mcp

Then set the env var:

export DOMAINFORAGENTS_API_KEY="your-api-key"

Any MCP Client

npx @domainforagents/mcp

The server communicates over stdio using the MCP protocol.

Getting an API Key

No signup form needed. One curl command:

curl -X POST https://api.domainforagents.io/api/v1/auth/register \
  -H "Content-Type: application/json" \
  -d '{"name": "my-agent"}'

Returns your api_key immediately.

Environment Variables

VariableRequiredDescription
DOMAINFORAGENTS_API_KEYYes (for authenticated tools)Your API key
DOMAINFORAGENTS_API_URLNoAPI base URL (default: https://api.domainforagents.io/api/v1)

Available Tools

ToolDescription
create_accountCreate account, get API key (no auth needed)
search_domainsSearch domain availability and pricing
register_domainRegister a domain
reserve_domainSoft-reserve with payment link
list_domainsList your domains
get_domainGet domain details + DNS
renew_domainRenew a domain
get_dns_recordsList DNS records
create_dns_recordCreate a DNS record
delete_dns_recordDelete a DNS record
set_nameserversSet custom nameservers
get_balanceCheck balance + transactions
get_usdc_deposit_infoGet USDC deposit wallet address
create_webhookSubscribe to events
list_webhooksList webhook subscriptions

Keywords

mcp

FAQs

Package last updated on 13 Apr 2026

Related posts