Skip to main content
Glama
openagentemail

openagentemail

Notify Agent

notify_agent

Wake a named agent by sending a notification with title, message, optional priority and tags. Use full agent address to ensure reliable delivery.

Instructions

Wake a named agent through the server-side notification route. Prefer the target agent's full identity address (localpart@domain); bare localpart remains compatible for legacy single-domain deployments. The server owns topics and credentials.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesTarget agent full address preferred (e.g. qa-bot@example.com); bare localpart (e.g. qa-bot) for legacy single-domain
tagsNoOptional ntfy tags
levelNourgent, normal (default), or low
titleYesShort notification title
messageYesNotification body

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
levelYes
titleYes
targetYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv0.8.0
    • changedInput schema / properties / name / description
      Previous value: -"Target agent identity localpart, for example qa-bot"New value: +"Target agent full address preferred (e.g. qa-bot@example.com); bare localpart (e.g. qa-bot) for legacy single-domain"
    • changedInput schema / properties / name / pattern
      Previous value: -"^[a-z0-9][a-z0-9._-]{0,62}$"New value: +"^[a-z0-9][a-z0-9._-]{0,62}(?:@[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\\.[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?)*)?$"
  2. Addedv0.6.0

TDQS

B3.4/5.0
Behavior3/5

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

Annotations indicate a non-read-only, non-idempotent, non-destructive action. The description adds that 'The server owns topics and credentials,' hinting at authentication/ownership but not detailing side effects, failure modes, or rate limits. With annotations already covering the safety profile, the description provides minimal extra behavioral context.

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

Conciseness4/5

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

The description is concise with three sentences, front-loading the core action and then adding address-format guidance. It is efficient with no redundant phrases. Slightly more detail on expected outcomes would not hurt, but the current length is appropriate for the tool's complexity.

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 tool has an output schema, so return value details are not required. However, the description does not mention potential errors, retry behavior, or what happens when the agent is not found. Given the five parameters and the non-trivial address semantics, a bit more context on usage conditions would improve completeness.

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 description mentions the name parameter's dual format (full address vs bare localpart), but this is already documented in the schema's parameter description. No additional parameter semantics are added beyond what the schema provides.

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 a specific action ('Wake a named agent') and the resource (agent) via a server-side route. It is distinct from sibling tools like notify_user and notify_check, though it doesn't explicitly name alternatives. The verb 'wake' conveys a specific behavioral nuance.

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

Usage Guidelines3/5

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

The description provides guidance on address format (full identity vs bare localpart) and notes legacy compatibility, which is useful context. However, it does not explicitly state when to prefer this tool over notify_user or notify_check, leaving the agent to infer the differentiation based on the target type. No exclusions or alternatives are named.

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