Skip to main content
Glama
Achlesha

sendhustle-mcp

create_contact

Add a contact to a sending domain's contact pool. Records are domain-first, so the same email on two domains creates separate contacts with independent consent.

Instructions

Create a contact in a sending domain's contact pool (POST /contacts, domain-first). The same address on two domains is two records with separate consent.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYesContact email address.
domainYesThe sending domain this resource belongs to (domain-first model), e.g. 'yourdomain.com' — one of your domains.
last_nameNo
first_nameNo
propertiesNoCustom contact properties.
unsubscribedNoWhether the contact is unsubscribed.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.2

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden and does add real value: it discloses that the same email address on different domains produces separate records with independent consent, preventing the common assumption of email-based global uniqueness. It does not cover duplicate-within-domain behavior or response details, but the key non-obvious side effect is surfaced.

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?

Two sentences with no filler. The first sentence front-loads the action, resource, and endpoint; the second adds the one genuinely non-obvious nuance needed to use the tool correctly.

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?

The core domain-first identity semantics are well covered, but operational gaps remain: no mention of what happens on a duplicate within the same domain, no return/response information (and no output schema exists), and no explicit routing to batch import tools for large lists. These are meaningful gaps for an agent handling edge cases.

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

Parameters4/5

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

Schema descriptions already cover email, domain, properties, and unsubscribed (67%), and the description adds meaning beyond that by explaining the identity model: an address is only unique within a domain and consent is domain-scoped. This clarifies the relationship between domain, email, and unsubscribed beyond the literal schema text.

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

Purpose5/5

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

States a specific action ('create'), a clear resource ('contact in a sending domain's contact pool'), and the HTTP endpoint. The domain-first scoping distinguishes it from related tools like create_contact_property and update_contact.

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

Usage Guidelines4/5

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

Gives clear context: this is the single-contact creation path for a domain-scoped contact pool, and the domain-first note tells the agent where the resource belongs. It does not explicitly call out bulk alternatives like import_contacts_batch or import_contacts_csv, but the single-vs-bulk distinction is strongly implied by the wording and sibling names.

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

Deploy Server

Other Tools