Skip to main content
Glama

Get a board overview

get_board
Read-onlyIdempotent

Use when the user names a specific public board, gives a boardrepo.com URL, or picks a search_boards result. Returns its metadata, a bounded README excerpt, tags, license, source EDA format and detected KiCad version, the capabilities it offers (schematic, pcb, bom, gerbers), file count, and canonical URL. Accepts handle/slug or a boardrepo.com URL; do not invent one. For the design itself, chain to read_schematic (wiring), get_bom (parts), or list_board_files then read_file (source).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
boardYesA public board: handle/slug (e.g. alice/keezyboost40) or a boardrepo.com URL. Discover it with search_boards; do not invent one.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnly, idempotent, and non-destructive, so the safety profile is covered. The description adds meaningful behavioral specifics beyond annotations: bounded README excerpt, detected KiCad version, capability flags, and the instruction not to invent a board. This is useful context without contradicting the annotations.

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?

Three sentences cover usage triggers, return contents, and routing to sibling tools with no filler. The structure front-loads the when-to-use condition and each sentence earns its place.

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?

The description is complete for an agent to select and call the tool: it gives input forms, output categories, discovery method, and follow-up tool routing. The output schema covers the detailed return structure, so no critical information is missing.

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 schema description already covers the parameter at 100%, including the accepted input forms and the 'search_boards' discovery route. The description mostly restates this guidance, adding only the 'do not invent one' caution, so it adds little beyond the schema baseline.

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 and resource ('Returns its metadata, a bounded README excerpt, tags, license, source EDA format...') and clearly distinguishes from siblings by directing design-detail needs to read_schematic, get_bom, or list_board_files. This is a clear, non-tautological definition.

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 first sentence states explicit trigger conditions: when the user names a specific public board, gives a URL, or picks a search_boards result. It also provides alternatives for follow-up actions ('chain to read_schematic...'), making the choice boundary 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

A4.7/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: board metadata, BOM, stored checks, file listing, fab profiles, structured queries, raw file contents, schematic connectivity, running checks, text search within a board, and board search across the corpus. Even similar pairs like get_checks/run_checks and search_board/search_boards are clearly separated by their descriptions and intended use.

Naming Consistency5/5

All tools follow a consistent snake_case verb_noun pattern, with get_, list_, read_, query_, run_, and search_ prefixes that accurately signal their behavior. There are no style mixes or ambiguous generic verbs.

Tool Count5/5

Eleven tools is well within the ideal range and each tool earns its place by covering a distinct aspect of board discovery, retrieval, and design inspection. The set feels complete without redundancy or bloat.

Completeness5/5

The tool surface covers the full read-side workflow: searching boards, fetching metadata and BOMs, inspecting schematic connectivity, reading raw or structured files, listing fabrication profiles, and retrieving or running DRC/ERC checks. No obvious gaps exist for a read-only public KiCad board repository browser.