Skip to main content
Glama

Create shared Artifacts graph

artifacts_create_shared

Persist the current Artifacts workspace to the cloud. Returns editUrl and viewUrl under /artifacts/.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
editIdNoOptional edit id (default: random af-…)
viewIdNoOptional view id (default: random af-…)

Schema Changelog

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

  1. Added

TDQS

A3.5/5.0
Behavior3/5

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

Since no annotations are provided, the description carries the full behavioral burden. It clearly exposes the core side effect (cloud persistence) and the return values, which is useful. It does not disclose whether repeated calls create new shared graphs, how editId/viewId affect the URLs, or what authentication/state prerequisites exist — meaningful gaps for a write/persist operation.

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 short sentences with no filler; the main effect is stated first and the return values second. This is appropriately front-loaded and every sentence earns its place.

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?

The description covers the essential action and return location, which is important because there is no output schema. However, with no annotations and multiple similar siblings, an agent is left to infer the broader workflow: whether this creates a new shared artifact graph, how IDs map to URLs, and what state is required before calling it.

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 100%, so editId and viewId are already documented with their defaults and optionality. The description adds no extra parameter semantics, but given the schema covers everything, baseline 3 is appropriate.

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 states a specific action ('Persist the current Artifacts workspace to the cloud') and a concrete result ('Returns editUrl and viewUrl under /artifacts/'), so an agent can understand the core purpose. It does not explicitly contrast it with siblings like artifacts_open_shared or artifacts_new, but 'current workspace' + 'cloud' is reasonably distinctive.

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 use case is implied: an agent should use this when it wants to persist the current workspace and obtain shareable URLs. However, there is no explicit when-not-to-use guidance or alternative routing among the large sibling set, so the agent is left to infer selection criteria.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.2/5.0
Disambiguation2/5

Many tools are mirrored across `artifacts_*` and `roadflow_*` with near-identical names and behavior, and within each family `get`, `export_json`, and `export_markup` overlap in what they return. Descriptions identify the target workspace, but an agent must carefully inspect prefixes and formats to avoid misselection.

Naming Consistency4/5

The set consistently uses lowercase snake_case with a domain prefix and predictable verbs like get, list, create, open, export, and apply. Minor deviations are bare commands (`new`, `discard`, `status`) and the parallel `artifacts_*`/`roadflow_*` prefixes, which make names look duplicated.

Tool Count3/5

At 23 tools, the surface lands in the heavy 16-25 range and feels padded because many operations are duplicated for two workspace types. Each subsystem alone would have a reasonable count, but combined the set is bloated.

Completeness4/5

The toolset covers the full workspace lifecycle: create, read, update via apply, discard, share, version, status, and multiple export formats. Missing cloud deletion and fine-grained element editing are minor gaps that can be worked around with full-state apply/export.

Resources