Skip to main content
Glama
Achlesha

sendhustle-mcp

send_event

Send a custom event to trigger automations for a specified domain, identifying the contact by email or ID. Only that domain's automations fire.

Instructions

Send a custom event that automations can trigger on (POST /events/send). domain is required — only automations belonging to that sending domain are triggered. Identify the contact by contact_id OR email.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNoArbitrary event payload.
nameYesThe custom event name automations trigger on.
emailNoIdentify the contact by email (or use contact_id).
domainYesThe sending domain this event belongs to (one of the account's domains). Required — only that domain's automations fire.
contact_idNoIdentify the contact by id (or use email).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.2

TDQS

A3.9/5.0
Behavior3/5

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

With no annotations, the description carries the burden of behavioral disclosure. It discloses the domain scoping and contact identification methods, adding value beyond the schema. However, it does not address failure modes, return values, or what happens if both contact identifiers are provided, leaving notable gaps.

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 the purpose stated first, followed by the key constraint. No filler or redundancy, every sentence earns its place.

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 description covers the core behavior and domain constraint, but leaves ambiguity about whether a contact identifier is required and what happens if both or neither are provided. Given the rich schema and no output schema, the description is mostly complete but has minor gaps.

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?

Schema description coverage is 100%, so the baseline is 3. The tool description reiterates the domain requirement and contact identification but adds no new semantic meaning beyond what the schema already provides.

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?

The description clearly states the verb (send) and resource (custom event), and explains its purpose: triggering automations. It also includes the HTTP endpoint, which distinguishes it from sibling tools like create_event.

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?

The description provides clear context for when to use the tool (to trigger automations) but does not explicitly mention when not to use it or name alternative tools. The purpose is clear enough for an agent to infer appropriate usage.

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