Skip to main content
Glama

list_artifacts

Retrieve artifacts created during a tutoring session, optionally filtered by artifact type, to review session outputs and evidence.

Instructions

List artefacts for a session, optionally filtered by type.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
session_idYes
artifact_typeNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

A3.5/5.0
Behavior2/5

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

There are no annotations, so the description carries the full burden of disclosing behavior. 'List' implies a read operation, but the description does not mention return format, ordering, pagination, error handling, or side effects.

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?

One sentence with no filler. The core action, scope, and optional filter are front-loaded and every word contributes to the meaning.

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 list operation with only two parameters, the description is minimally viable. Still, without an output schema or annotations, it would benefit from noting what the response contains or whether results are paginated.

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 description adds meaning by stating that the tool is scoped to a session and that filtering by type is optional. It does not name the artifact_type parameter explicitly or enumerate possible type values, but it does clarify the role of the optional parameter.

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 uses a specific verb 'List' with a clear resource ('artifacts for a session') and an optional filter. It is naturally distinguishable from sibling tools like get_artifact (singular retrieval) and save_artifact (creation).

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 when to use the tool: when listing artifacts belonging to a session, optionally restricted by type. However, it gives no explicit guidance about when not to use it or which alternative to choose for single-artifact retrieval.

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