Skip to main content
Glama
nmassi

glyphs-mcp

by nmassi

get_kerning

Retrieve kerning pairs from a Glyphs font master, with optional filtering by left glyph and result limit for efficient type design workflows.

Instructions

Get kerning pairs for a specific master (or first master if not specified).

Args: master_id: Master ID. Empty = first master. left: Filter by left glyph/group name. Empty = all. limit: Max pairs to return. 0 = all. Use limit=50 for large fonts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
leftNo
limitNo
master_idNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral disclosure burden. It transparently documents defaults (empty master_id = first master, left = all, limit 0 = all), the left-glyph filtering behavior, and provides a performance hint for large fonts. It does not describe the return format, but the core query behavior is clear.

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 compact, front-loaded with the main purpose, and uses a clean Args block where each line adds value. No redundant or filler content is present.

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 tool with three optional parameters and no output schema, the description covers all invocation-relevant details: defaults, filtering, and performance behavior. A brief note on the return shape would make it fully complete, but nothing needed to call the tool correctly is missing.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must fully explain parameters. It does: master_id selects the master, left filters by glyph/group name, and limit caps results with meaningful defaults and a concrete usage recommendation. This fully compensates for the absent schema descriptions.

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 and resource: 'Get kerning pairs for a specific master'. It also clarifies default behavior (first master if not specified) and is clearly distinguishable from sibling tools like set_kerning_pair, delete_kerning_pair, and auto_kern.

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 usage through its parameter guidance, such as 'Use limit=50 for large fonts', but it does not explicitly state when to prefer this tool over alternatives like analyze_kerning or get_font_info. The intended context is inferable but not directly articulated.

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