Skip to main content
Glama
hardware-mcp

arduino-mcp-server

by hardware-mcp

List Supported Boards

list_supported_boards
Read-only

Retrieve a list of supported Arduino boards from the local index, with optional filtering by name or FQBN.

Instructions

List supported/installable boards from the local arduino-cli index.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
searchNoOptional case-insensitive filter for name/FQBN.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes
statusNo
commandNo
dataNo
rawNo
rawTailNo
stageNo
errorCodeNo
retryableNo
reasonCodesNo
nextActionsNo
noteNo
errorNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.8

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=false, so the description need not restate safety. It adds that the data comes from the local arduino-cli index, but does not disclose any further behavior such as cache freshness or index update requirements.

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 one short sentence with no filler or repetition; it front-loads the action and resource.

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 tool with one optional parameter and an output schema, the description is largely sufficient. It could more fully clarify the distinction between supported/installable boards and connected boards, but no critical calling 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 single optional 'search' parameter is already fully described in the schema ('Optional case-insensitive filter for name/FQBN.'). With 100% schema coverage, the description has no obligation to add more.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('List') and a clear resource ('supported/installable boards from the local arduino-cli index'). It is clear enough to distinguish from connected-board listing, though it does not explicitly name sibling tools.

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 phrase 'from the local index' gives some context, and one can infer this is for enumerating installable boards, but there is no explicit when-to-use guidance, exclusion, or comparison to alternatives such as list_connected_boards or search_board_reference.

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