Skip to main content
Glama

Get template

get_template
Read-only

Get one published template by its slug: description, table names, the foreign-key graph and counts. A free template also carries the project id its board can be read with; a paid one never does, because the schema itself is what is being sold.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesListing slug, as it appears in the public URL.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYes
tagsNo
titleYes
isFreeNo
schemaYes
summaryNo
categoryYes
currencyNo
projectIdNo
updatedAtNo
authorNameNo
cloneCountNo
priceCentsNo
descriptionNo
publishedAtNo
purchasableNo
liveViewableNo
purchaseCountNo

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, so the safe-read nature is covered. The description adds useful behavioral nuance beyond the schema: only published templates are accessible, free templates expose a project id while paid ones deliberately do not, and the reason is that the schema is the product. This goes beyond the structural return data.

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 sentences with no filler. It front-loads the core purpose and return contents, then adds the free-versus-paid distinction, which is valuable and directly affects how an agent interprets the response. Every sentence earns 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?

With one required parameter, a fully documented schema, an output schema, and readOnly annotations, the description is largely complete. It explains the return payload and the crucial free/paid behavioral difference. It could have explicitly pointed to browse_templates as the way to discover slugs, but that is a minor omission given the available sibling tools.

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 slug parameter is already documented as the listing slug as it appears in the public URL. The description reinforces that the slug identifies a template, but it does not add meaning beyond the schema, so the baseline of 3 is appropriate.

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 names a specific verb ('Get'), a resource ('one published template'), and a selector ('by its slug'), then enumerates exactly what is returned: description, table names, foreign-key graph, and counts. It also clarifies a meaningful distinction between free and paid templates, which helps separate this tool from browse_templates and template_categories.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly implies the tool is for retrieving a single published template when you already know its slug, and it excludes unpublished templates by using 'published'. It does not explicitly name sibling tools like browse_templates for listing or template_categories for category browsing, so the when-not-to-use guidance is only implicit rather than explicit.

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

A3.7/5.0
Disambiguation5/5

Every tool targets a distinct resource/action: board retrieval is split into JSON vs image with explicit cross-references, and drawing tools are separated from the generic update_board. Look-alikes like list_documents vs list_diagrams and publish_listing vs use_template are differentiated clearly.

Naming Consistency4/5

Most tools follow a verb_noun pattern: create_project, list_documents, update_board, upsert_org_member. A few noun-only names like my_listings, project_file_counts and template_categories break the pattern, so naming is consistent but not uniform.

Tool Count2/5

40 tools is well beyond the 25+ threshold for a single server, even though the domains are clustered into org/project/document/board/template areas. The large surface will make tool selection and onboarding heavier for an agent than necessary.

Completeness3/5

Core lifecycle coverage for org/project/document/board/template is mostly present, and update_board serves as a flexible escape hatch. However, the board API reads rectangle/diamond/ellipse/free-text drawings and groups/links but only offers explicit create/erase for strokes and arrows; paid template purchase/access is also left unclear.

Resources