Skip to main content
Glama
getplatform

GetMailer MCP Server

by getplatform

add_domain

Add a new sending domain to GetMailer's MCP server for transactional emails. The tool provides DNS records to configure domain verification.

Instructions

Add a new sending domain (returns DNS records to configure)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
domainYesDomain name to add (e.g., example.com)

Implementation Reference

  • Handler for the 'add_domain' tool that sends a POST request to the GetMailer API's /api/domains endpoint with the provided domain.
    case 'add_domain': {
      const result = await apiRequest('/api/domains', {
        method: 'POST',
        body: JSON.stringify({ domain: args?.domain }),
      });
      return {
        content: [{ type: 'text' as const, text: JSON.stringify(result, null, 2) }],
      };
    }
  • src/index.ts:192-205 (registration)
    Registration of the 'add_domain' tool in the ListToolsRequestSchema handler, defining its name, description, and input schema requiring a 'domain' string.
    {
      name: 'add_domain',
      description: 'Add a new sending domain (returns DNS records to configure)',
      inputSchema: {
        type: 'object' as const,
        properties: {
          domain: {
            type: 'string',
            description: 'Domain name to add (e.g., example.com)',
          },
        },
        required: ['domain'],
      },
    },
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It indicates a write operation ('Add') and mentions the output ('returns DNS records to configure'), but fails to disclose critical traits such as permissions required, whether the operation is idempotent, potential side effects, or error conditions. This leaves significant gaps in understanding the tool's behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core action and resource, followed by the key outcome. There is no wasted verbiage, and every word earns its place, making it highly concise and well-structured for quick comprehension.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (a write operation with one parameter) and lack of annotations and output schema, the description is minimally adequate. It covers the basic purpose and output but omits details on usage context, behavioral traits, and error handling. This results in a description that meets the bare minimum but leaves the agent with unanswered questions.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100%, with the single parameter 'domain' well-documented in the schema. The description adds no additional parameter semantics beyond what the schema provides, such as format constraints or examples. Given the high schema coverage, a baseline score of 3 is appropriate, as the description doesn't compensate but also doesn't detract.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Add') and resource ('new sending domain'), making the purpose immediately understandable. It distinguishes this from sibling tools like 'list_domains' or 'verify_domain' by focusing on creation rather than listing or verification. However, it doesn't explicitly contrast with all siblings, keeping it from a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'verify_domain' or other domain-related operations. It mentions the return value ('returns DNS records to configure'), which hints at a post-creation step, but lacks explicit when-to-use or when-not-to-use instructions, leaving the agent to infer context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/getplatform/getmailer-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server