Skip to main content
Glama

Get one Mana creation

get_mana_creation
Read-onlyIdempotent

Return one published creation's public descriptive data and links. Never returns source code, bundles, or assets.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesThe creation's slug.
handleYesCreator handle, without the @.
localeNoBCP-47 locale for localized descriptions.

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and non-destructive behavior. The description adds context beyond these by stating the return includes only public descriptive data and links, and by explicitly warning that source code, bundles, and assets are never returned. This gives the agent a clear boundary on response contents.

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 two concise sentences with no filler. The core behavior is front-loaded, and the negative boundary about source code/assets is a valuable addition that justifies its place.

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 read-only lookup tool with well-documented parameters and strong annotations, the description gives sufficient context: it identifies what is returned, what is not returned, and that only published creations are covered. There is no output schema, but 'public descriptive data and links' provides enough shape for an agent to understand the general response.

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 the parameters are already well documented. The description adds no additional parameter-specific meaning beyond what the input schema provides, but it doesn't need to because the schema already explains slug, handle, and locale.

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 states a specific verb ('Return'), a specific resource ('one published creation'), and clarifies the scope ('public descriptive data and links'). The second sentence explicitly excludes source code, bundles, and assets, which helps differentiate it from tools that might return creation content or binaries.

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 singular 'one' and 'published creation' imply this tool is for fetching a single creation's public metadata, as opposed to listing or searching creations. However, it does not explicitly name alternatives such as list_mana_creations or search_mana_creations, nor does it state when not to use this tool.

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

A4.3/5.0
Disambiguation5/5

Each tool targets a clearly distinct resource and action: docs vs creations vs creators vs tags, and get vs list vs search. Even the paired doc tools are unambiguous because one returns a single document while the other lists available documents.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern using get_, list_, or search_ plus a resource name. Singular and plural forms are used correctly and predictably.

Tool Count5/5

Six tools is a well-scoped set for a public read-only browsing and documentation server. Each tool covers a distinct user need without redundancy or bloat.

Completeness4/5

The server covers the core public browsing workflows: discover via tags, search creations, fetch creation details, and view creator profiles. A minor gap is the lack of a way to list or search creators directly, but agents can likely reach creators through creation links.

Resources