Skip to main content
Glama
AlexStansfield

gtm-mcp-server

Create GTM Workspace

gtm_create_workspace

Create a new workspace in a Google Tag Manager container by providing an account ID, container ID, and a name. Use this tool to set up a distinct environment for managing tags, triggers, and variables before publishing changes.

Instructions

Create a new workspace in a container.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesName for the new workspace
account_idYesThe GTM account ID
descriptionNoOptional description for the workspace
container_idYesThe GTM container ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already convey that this is not read-only, not idempotent, and not destructive. The description adds only the 'new workspace' creation context and does not discuss return values, duplicate-name behavior, or required permissions, but no contradiction exists.

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?

A single, front-loaded sentence with no filler or redundant information. Every word contributes to conveying the core action and target resource.

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 simple create operation with full schema coverage and annotations, the description is adequate. It could mention that the container must already exist, but the schema includes container_id and sibling lookup tools help supply that context.

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?

The input schema covers 100% of parameters with descriptions, so the baseline is 3. The tool description itself adds no additional parameter meaning beyond the schema.

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 'Create a new workspace in a container' uses a specific verb and resource, clearly identifying the operation. It is distinct from sibling create tools for tags, triggers, and variables, as well as workspace status/sync/list tools.

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 verb 'create' implies when to use it, but the description provides no explicit guidance on prerequisites, when not to use it, or alternatives. It is minimally viable but lacks direct usage context.

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