Skip to main content
Glama

create_automation

Automate boards: trigger actions on schedules or status changes, including HTTP requests, notifications, and emails. Keep columns current by pairing scheduled triggers with API calls.

Instructions

Create an automation on a board: when something happens, do something. The most useful action here is http_request, which calls an external API and writes the answer back into columns — pair it with the "scheduled" trigger and the board keeps itself up to date (prices, exchange rates, shipment status, weather). Triggers: item_created, status_changed, column_value_changed, date_approaching, scheduled. Actions: http_request, send_notification, send_email, change_status, set_column_value, create_cross_board_item, send_webhook. Two more things every action list can use: a { type: "delay", config: { minutes | hours | days } } action pauses the run and resumes the actions after it later (reminders, follow-ups); and any network action (http_request, send_webhook, send_email, send_whatsapp) may carry config.retry: { attempts (1-5), delaySeconds (1-60) }. send_webhook accepts config.secret for an HMAC signature.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
actionsYese.g. [{ type: "http_request", config: { url: "https://api.frankfurter.app/latest?from=USD&to=ILS", method: "GET", responseMapping: [{ path: "rates.ILS", columnId: "<column id from get_board_schema>" }] } }]
boardIdYes
triggerYes
isActiveNo
projectIdYes
triggerConfigNoe.g. { cron: "0 8 * * *" } for scheduled, { columnName } for column_value_changed

Schema Changelog

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

  1. First observedv0.7.0

TDQS

A4.5/5.0
Behavior5/5

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

Adds substantial behavior beyond the annotations (readOnlyHint=false, destructiveHint=false): http_request writes results back into columns, delay pauses and later resumes the action chain, network actions support retry with bounded attempts/delaySeconds, and send_webhook supports HMAC signing via config.secret. 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?

Well front-loaded: purpose and the most valuable usage pattern first, then triggers, actions, and finally exceptional behaviors. It is long, but nearly every sentence carries information absent from the schema; only the trigger enumeration mildly duplicates what the schema's enum already provides.

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?

For a complex tool (7 params, 5 required, nested objects, no output schema, 29% schema coverage), it covers a great deal: trigger and action vocabularies, retry and delay semantics, and HMAC signing. Gaps remain: triggerConfig needs for date_approaching and status_changed, the isActive parameter is never mentioned, and validation/error behavior is not addressed. Strong but not exhaustive.

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 coverage is only 29%, yet the description compensates strongly: it enumerates action types, documents the http_request config shape (url, method, responseMapping), delay config, retry bounds, and secret. Remaining ambiguities include the delay config notation ({ minutes | hours | days }) not stating the value shape, send_whatsapp appearing outside the main action list, and triggerConfig requirements for date_approaching/status_changed being undocumented.

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 opening sentence states a specific verb+resource: 'Create an automation on a board', backed by a plain-language definition ('when something happens, do something'). It is clearly distinguishable from siblings like list_automations, and the enumeration of triggers and actions makes the scope concrete.

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?

Provides concrete usage context: pairing http_request with the scheduled trigger to keep boards self-updating (prices, exchange rates, shipment status, weather), and using the delay action for reminders and follow-ups. It stops short of an explicit when-not-to-use or named alternative tools, but the guidance is specific enough for an agent to decide.

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

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/shimon-ks/tasklite-mcp'

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