Skip to main content
Glama

get_workspace_action

Read-only

Retrieve complete details of a specific automation action within a workspace using its action ID and workspace ID.

Instructions

Get full details of a workspace automation action by ID.

workspace_id: target workspace ID — get available IDs from list_workspaces()

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
action_idYes
workspace_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.18

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the bar is lower. The description's 'Get' wording is consistent with a read-only operation but adds no extra behavioral context beyond the annotations, such as whether the action is active or archived.

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?

Two concise sentences with the core purpose front-loaded. No redundant phrases; the workspace_id hint is a useful inline addition without bloating the description.

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?

For a simple getter with two parameters and no output schema, the description covers the basic purpose and workspace_id source. However, it omits how to obtain action_id, which is a critical input for the tool, and gives no hint about the returned 'full details' structure.

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 0%, so the description must compensate. It explains workspace_id well ('target workspace ID — get available IDs from list_workspaces()'), but action_id is only imprecisely described via 'by ID' with no indication of where to obtain valid action IDs.

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?

States a specific verb ('Get'), resource ('workspace automation action'), and scope ('full details') with an explicit 'by ID' qualifier. This clearly distinguishes it from sibling tools like list_workspace_actions, which lists, and create/update/delete, which mutate.

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 implies usage for retrieving a single action's details ('by ID') but does not explicitly state when to choose this over list_workspace_actions or other siblings. It does provide a useful hint for workspace_id (get from list_workspaces()), but no exclusions or direct comparisons.

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