admtools
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ADMTOOLS_API_TOKEN | Yes | Bearer token from adm.tools API settings |
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": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| adm_domainsA | List all domains in your account |
| adm_domain_checkA | Check if a domain name is available for registration |
| adm_domain_zonesA | List available domain zones with prices |
| adm_domain_addA | Add a domain to NS servers (for DNS management) |
| adm_get_idC | Get object ID by type and name (utility) |
| adm_dns_recordsB | List all DNS records for a domain |
| adm_dns_addB | Add a DNS record to a domain |
| adm_dns_deleteA | Delete a DNS record (careful!) |
| adm_balanceA | Get current account balance |
| adm_api_rawC | Call any adm.tools API endpoint directly (advanced) |
| adm_mail_domainsA | List all mail domains on your account |
| adm_mailboxesA | List all mailboxes/redirects for a mail domain |
| adm_mailbox_deleteC | Delete a mailbox (careful!) |
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 resource and action: domains, DNS records, mail domains, mailboxes, balance, and raw API access are clearly separated. Even similar actions like adm_domain_add and adm_dns_add are disambiguated by their descriptions and target resources.
All tools share an adm_ prefix and use lowercase snake_case, which creates a recognizable pattern. However, list tools are named as bare nouns (adm_domains, adm_dns_records) while mutations use verb_noun forms (adm_dns_add, adm_mailbox_delete), and adm_get_id/adm_api_raw fit less cleanly.
Thirteen tools is a well-scoped size for a domain, DNS, mail, and account management server. Each tool has a clear purpose and the count is neither bloated nor too thin.
The toolset covers listing, adding, and deleting for several resources, but obvious lifecycle gaps exist: no DNS record update, no mailbox creation, and no full domain registration/removal workflow. The adm_api_raw escape hatch can help, but it is not a substitute for purpose-built operations.