AgentDomain
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AGENTDOMAIN_API | No | API base URL | https://api.agentdomain.cloud |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| registerA | Create a new AgentDomain account and save the API key. Call this first if you don't have an account. The API key is saved automatically for future calls. |
| loginC | Login to an existing AgentDomain account and save the API key. |
| account_infoA | Get current account details (name, email, verification status). |
| domain_searchC | Search for available domains matching a keyword. Returns a list of available domain names with prices. |
| domain_checkB | Check if a specific domain is available and get its price. Returns availability status and registration cost. |
| domain_buyA | Register/buy a domain. Requires sufficient wallet balance. The domain will be registered through Cloudflare and DNS records can be managed immediately. |
| domain_listA | List all domains registered on your account. Returns domain names, status, expiration dates, and nameservers. |
| domain_dns_getB | Get DNS records for a domain. Returns all DNS records (A, CNAME, MX, TXT, etc.) for the domain. |
| domain_dns_updateB | Update DNS records for a domain. Each record should have: type, name, content, ttl, and optionally proxied. Example: {"type": "A", "name": "@", "content": "1.2.3.4", "ttl": 300, "proxied": false} |
| domain_transferB | Get the EPP authorization code to transfer a domain to another registrar. Returns the auth code needed for domain transfer. |
| wallet_balanceA | Check your AgentDomain wallet balance. Returns balance in cents and spending limits. |
| wallet_topupB | Create a card top-up session for your wallet. Returns a Stripe Checkout URL to complete payment. |
| wallet_transactionsC | List recent wallet transactions. Shows domain purchases, top-ups, and refunds. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 13 tools
Each tool targets a distinct operation: account, domain actions (buy, check, list, search, transfer), DNS management, wallet, and auth. No overlap between tools; even domain_check and domain_search serve different purposes (specific vs keyword search).
Most tools follow a domain_verb or wallet_verb pattern (e.g., domain_buy, domain_check, wallet_balance). However, login and register deviate from this pattern, and account_info is noun_noun. Still, the majority are consistent.
13 tools cover domain lifecycle (search, check, buy, list, transfer, DNS management) plus account and wallet operations. This is well-scoped for a domain registrar MCP server, neither too few nor too many.
The set covers core domain operations: search, check, buy, list, transfer, DNS management. Missing domain renewal and deletion, but these are less critical. Wallet and account tools are complete. Minor gaps but overall functional.