Skip to main content
Glama

create_workspace_action

Creates a new automation action in a specified workspace and returns its ID. Requires workspace ID, title, and metadata.

Instructions

Create a workspace automation action. Returns the new action ID.

workspace_id: target workspace ID — get available IDs from list_workspaces()
metadata example for a webhook trigger:
  {"$type": "ProgressionUpdatedMetadata", "webhookUrl": "https://..."}
hub_profile_ids: profiles this action applies to (default: all)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYes
detailsNo
metadataYes
workspace_idYes
hub_profile_idsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.18

TDQS

B3.4/5.0
Behavior2/5

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

The annotations declare readOnlyHint false and openWorldHint true, indicating a write operation with potential external effects. The description only mentions that it returns an ID and provides a metadata example for a webhook trigger, hinting at external integration but not explicitly disclosing the behavior. It does not elaborate on the openWorldHint implications, such as possibly sending webhooks or affecting external systems.

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 concise, front-loaded with the purpose and return value, and uses a clear bullet-like format for parameter details. Every sentence adds value, with no redundant information.

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?

Given the tool has 5 parameters, a nested metadata object, and no schema descriptions, the description covers some key aspects but omits title and details. It also does not fully describe the metadata structure beyond an example. However, the output schema exists, so return format is covered. Overall, it is partially complete.

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?

The input schema has no descriptions (coverage 0%), so the description must compensate. It explains workspace_id, metadata (with example), and hub_profile_ids (default all). However, it does not explain title or details, which are required or have defaults. Thus it adds meaning for 3 out of 5 parameters.

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 the action: 'Create a workspace automation action' and notes the return of the new action ID. This distinguishes it from sibling tools like update_workspace_action and delete_workspace_action by its creation purpose. However, it does not explicitly name alternatives, but the resource specificity is sufficient.

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 obtaining workspace_id from list_workspaces() and explains hub_profile_ids default. It does not explicitly mention when to use this tool over alternatives like update_workspace_action, but the creation intent is implied. It also gives a metadata example, offering usage context.

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