Skip to main content
Glama

get_icon_guidance

Read-only

Read the icon style guide for drawing custom SVG icons: templates, rules, worked path examples, and guidance on when to use a custom icon.

Instructions

The style guide for drawing an icon as SVG, and how to use it.

Read this before writing SVG for render_svg_icon: it holds the two icon templates (line art for a light surface, white-on-filled for a coloured one), the rules that keep a hand-drawn icon looking like the rest of the set, worked path examples you can adapt, and the decision of when a custom icon is the right answer at all.

Returns the document as "guidance".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.8.0

TDQS

A4.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds that the tool returns a document as 'guidance' and that it contains templates, rules, and examples. It doesn't disclose much beyond that, but for a read-only document retrieval tool, the added context is adequate.

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 well-structured: a one-sentence summary, then a clear directive ('Read this before...'), then a list of contents. Every sentence earns its place and the most important usage instruction is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter, read-only document retrieval tool with an output schema, the description fully covers what the tool does, why an agent would use it, and what it returns. Nothing essential is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so the schema is trivially complete. The description explains what the returned document contains, which is the only meaningful semantic information an agent needs. Baseline 4 for zero-param tools 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 clearly states the tool returns a style guide document for drawing SVG icons, and explicitly names the sibling tool (render_svg_icon) it supports. It distinguishes itself from get_design_guidance by focusing specifically on icon drawing conventions and templates.

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

Usage Guidelines5/5

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

The description explicitly instructs the agent to read this before writing SVG for render_svg_icon, and even mentions when a custom icon is the right answer. This gives clear when-to-use guidance and implicitly routes away from alternatives.

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