Skip to main content
Glama

Board Search Tool

board-search-tool
Read-only

Search for public soundboards by search term. Optionally restrict the results to boards that have a text-to-speech engine.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum results to return. Defaults to 10; maximum 50.
cursorNoCursor returned by a previous search request.
only_ttsNoWhen true, return only boards that are AI text-to-speech boards.
search_termYesThe term to search for. Minimum of 3 characters, maximum of 200 characters.
record_sourceNoOptional analytics source label for this search request.

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the read-only nature is covered. The description adds the constraint that only 'public' soundboards are searched, which is valuable context beyond annotations. It does not describe pagination or other side effects, but the schema covers parameters like cursor and limit.

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?

Two sentences, front-loaded with core purpose. Every word adds value; no redundancy or filler. Ideal conciseness for a search tool.

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?

The description covers the core functionality and key filter. The schema handles parameter details (e.g., limit, cursor indicating pagination). No output schema exists, but search results are typically self-explanatory. Minor gap: could mention pagination briefly, but not necessary.

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 coverage is 100%, so each parameter is already described. The description adds no new meaning beyond restating the search term and optional TTS filter. Baseline score of 3 is appropriate since the schema does the heavy lifting.

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 specifies the action ('Search for public soundboards by search term') and the resource ('public soundboards'). It also mentions an optional filter (TTS restriction), distinguishing it from sibling tools like sound-search-tool (sounds) and board-fetch-tool (single board fetch).

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 provides clear context for usage: searching public soundboards via a search term with an optional TTS filter. While it doesn't explicitly mention when not to use it or list alternatives, the sibling tools are distinct enough that confusion is unlikely.

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.9/5.0
Disambiguation5/5

Each tool targets a distinct combination of resource (board or sound) and action (fetch or search), with no overlapping functionality.

Naming Consistency5/5

All tool names follow a consistent pattern: {resource}-{action}-tool, using snake_case and predictable verbs (fetch, search).

Tool Count5/5

4 tools is well-scoped for a read-only soundboard server, covering the essential operations of fetching and searching for both boards and sounds.

Completeness5/5

The tool set provides complete coverage for the domain: fetch and search for each resource type, with no obvious missing operations for a public soundboard service.

Resources