Skip to main content
Glama

Delimit Notify

delimit_notify

Send an immediate notification via webhook, Slack, or email whenever owner action is required—reply, deployment decision, or approval. Automatically alert the right person so the issue is resolved without delay.

Instructions

Send a notification (webhook / Slack / email).

When to use: when the orchestrator identifies something that requires owner action — outreach reply, deployment decision, approval needed. Auto-trigger: call immediately, never ask. When NOT to use: for SIEM-class structured streaming (use delimit_siem) or multi-routing config (delimit_notify_routing).

Sibling contrast: delimit_notify_routing configures rules; delimit_notify_inbox reads inbound; this sends one outbound.

Side effects: sends a network message via webhook (JSON POST), Slack webhook, or email (SMTP). The founder reviews and replies via email — that reply is consumed by delimit_notify_inbox / delimit_inbox_daemon.

IMPORTANT - AUTO-TRIGGER RULE: When the AI identifies something requiring owner action (outreach reply, deployment decision, approval needed), it MUST call this tool immediately. Never ask "want me to notify you?" — just send. The founder reviews and acts via email. All tools must chain.

Channels: webhook (JSON POST), slack (webhook URL), email (SMTP). Use for: governance alerts, deployment notifications, breaking change warnings.

IMPORTANT - Email context rules: Every email must be self-contained and actionable. The recipient reads on mobile and needs to know exactly what to do without opening another app.

  • Subject: lead with [ACTION TYPE] bracket, include enough context to triage from inbox

  • Body: include WHAT happened, WHY it matters, WHAT to do next, and relevant links

  • Never send bare IDs or technical state without human-readable context

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toNoRecipient email address (email only). Overrides default DELIMIT_SMTP_TO. Send to any address - leave empty for default.
channelNowebhook, slack, or email.webhook
led_refNoOptional LED-XXXX tag tying the draft to its tracking item. Surfaced in subject-line matching by the executor.
messageNoNotification body. Must include full context (see rules above).
subjectNoSubject line (email only). Use [ACTION], [INFO], [ALERT] prefix.
draft_kindNoOne of github_comment, social_post, ledger_done, notify_routing_update, deploy_publish_prevalidated_artifact. When set, registers a signed draft in the local SQLite registry so a future executor can match founder Ship-it replies against it.
event_typeNoEvent category for filtering.
webhook_urlNoURL for webhook/slack channels.
draft_targetNoWhere the action lands (e.g. {"repo":"x/y","issue":1}). JSON string or dict. Required when draft_kind is set.
from_accountNoSender account key from ~/.delimit/secrets/smtp-all.json (e.g. 'notifications@example.com'). Email only. Optional inbox-executor binding (LED-1129 Phase 1, no auto-execution yet):.
draft_payloadNoThe action contents (e.g. {"body": "..."} for github_comment). JSON string or dict. Required when draft_kind is set.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed6 schema fields changedv4.7.9
    • addedInput schema / properties / draft_kind
      Added value: +{
      +  "default": "",
      +  "description": "One of github_comment, social_post, ledger_done, notify_routing_update, deploy_publish_prevalidated_artifact. When set, registers a signed draft in the local SQLite registry so a future executor can match founder Ship-it replies against it.",
      +  "type": "string"
      +}
    • addedInput schema / properties / draft_payload
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "additionalProperties": true,
      +      "type": "object"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "The action contents (e.g. {\"body\": \"...\"} for github_comment). JSON string or dict. Required when draft_kind is set."
      +}
    • addedInput schema / properties / draft_target
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "additionalProperties": true,
      +      "type": "object"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Where the action lands (e.g. {\"repo\":\"x/y\",\"issue\":1}). JSON string or dict. Required when draft_kind is set."
      +}
    • changedInput schema / properties / from_account / description
      Previous value: -"Sender account key from ~/.delimit/secrets/smtp-all.json\n(e.g. 'notifications@example.com'). Email only."New value: +"Sender account key from ~/.delimit/secrets/smtp-all.json (e.g. 'notifications@example.com'). Email only. Optional inbox-executor binding (LED-1129 Phase 1, no auto-execution yet):."
    • addedInput schema / properties / led_ref
      Added value: +{
      +  "default": "",
      +  "description": "Optional LED-XXXX tag tying the draft to its tracking item. Surfaced in subject-line matching by the executor.",
      +  "type": "string"
      +}
    • changedInput schema / properties / to / description
      Previous value: -"Recipient email address (email only). Overrides default DELIMIT_SMTP_TO.\nSend to any address - leave empty for default."New value: +"Recipient email address (email only). Overrides default DELIMIT_SMTP_TO. Send to any address - leave empty for default."
  2. Addedv4.5.5

TDQS

A4.7/5.0
Behavior5/5

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

Despite the annotations being minimal (readOnlyHint=false, destructiveHint=false), the description discloses the key side effect: it sends a network message via webhook JSON POST, Slack, or SMTP. It also explains the downstream founder-reply loop, the auto-trigger requirement, and content expectations. This goes well beyond what the annotations or schema alone convey, and there is no contradiction with the annotations.

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 long but well-organized with labeled sections and front-loading of the core action. There is some redundancy, such as repeating the founder-reply loop and channel listing, but the repetition reinforces genuinely important behavioral requirements. The structure makes it easy for an agent to scan and extract key rules.

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

Completeness4/5

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

Given the tool's 11 parameters and optional draft-related behaviors, the description covers the critical usage context, exclusions, side effects, and content formatting rules well. The output schema exists, so the description need not explain return values. It falls just short of a 5 because some operational details, such as how draft_kind interacts with the local SQLite registry, are only in the schema rather than the main description, though the schema does document them.

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 description coverage is 100%, so the baseline is 3. The description adds meaningful behavior beyond the schema by specifying email subject and body rules, including [ACTION TYPE] prefixes and the need for self-contained actionable content. However, several parameters like draft_target, draft_payload, and from_account are not elaborated in the prose description, though the schema covers them adequately.

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 opens with a specific verb and resource: 'Send a notification (webhook / Slack / email).' It clearly differentiates itself from siblings by stating that delimit_notify_routing configures rules, delimit_notify_inbox reads inbound messages, and this tool sends one outbound notification. This makes the tool's role unmistakable.

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

Usage Guidelines5/5

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

The description provides explicit when-to-use conditions ('requires owner action — outreach reply, deployment decision, approval needed'), an explicit when-not-to-use section with alternative tools (delimit_siem, delimit_notify_routing), and a mandatory auto-trigger rule instructing the agent to call immediately without asking. This is exemplary usage guidance.

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/delimit-ai/delimit-mcp-server'

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