Skip to main content
Glama

snowflake_create_alert

Automate monitoring by creating a Snowflake alert that runs on a schedule, checks a condition, and triggers action SQL when met.

Instructions

Create an alert with schedule, condition SQL, and action SQL. Destructive actions require confirm=True.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
commentNo
confirmNo
databaseNo
scheduleYes
action_sqlYes
alert_nameYes
schema_nameNo
condition_sqlYes
warehouse_nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.1.5
    • addedInput schema / properties / confirm
      Added value: +{
      +  "default": false,
      +  "title": "Confirm",
      +  "type": "boolean"
      +}
  2. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description must bear the full burden of behavioral disclosure. It does disclose one important safety trait—destructive actions require confirm=True—which goes beyond the raw schema. But it omits other relevant behavior such as required privileges, behavior when the alert name already exists, and that the alert will later execute action SQL on schedule.

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 two concise sentences with no filler. It puts the core purpose first and then isolates the critical safety caveat about destructive actions.

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?

Combined with the schema and an output schema, this is minimally viable for an agent to attempt creation. However, it lacks alternative routing, prerequisite context, and explanations for several parameters, so it is not fully complete for correct invocation in all cases.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate, but it only mentions schedule, condition_sql, and action_sql by name without explaining their roles. It adds no semantics for alert_name, warehouse_name, database, schema_name, or comment; only confirm receives meaningful extra context.

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 states the exact action ('Create an alert') and names its core parts: schedule, condition SQL, and action SQL. This makes it clearly distinct from sibling alert tools like list, describe, drop, resume, and suspend, and even from create_task/create_pipe because the target resource is explicitly an alert.

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 intended use is apparent from the verb 'Create', and the confirm=True note adds a useful operational condition. However, it does not explicitly state when to prefer this over alternatives such as snowflake_create_task for scheduled SQL work, nor does it mention when not to use it.

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