Skip to main content
Glama

VibeHacker

Search tools

search_tools
Read-onlyIdempotent

Search published tools by name, tagline, or maker.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYes
categoryNoCategory slug from list_categories.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, so the safety profile is covered. The description adds that only published tools are searched and which fields are matched, but it does not disclose result ordering, pagination, or category-filter behavior beyond the schema.

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?

One front-loaded sentence with no filler: verb, resource, and search scope. Exactly as concise as a search-tool definition needs to be.

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 search tool, the definition plus schema and annotations are sufficient to select and invoke it. The only minor gap is the absence of an explicit return shape, but no output schema exists and the action implies a list of matches.

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 description coverage is low (only category has a description), but the description explains that query matches name/tagline/maker. limit and category are inferable from schema constraints and category's description, though the interaction between query and category is not stated.

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?

States a specific verb ('Search') and resource ('published tools') plus the searchable attributes (name, tagline, maker). This clearly distinguishes it from get_tool for direct retrieval and list_categories for category browsing.

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 use when the agent wants to find tools by free-text search, but it does not explicitly say when to prefer get_tool or list_categories, nor any exclusions. Context is clear but alternative-selection guidance is absent.

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 maps to a distinct resource/action: exact retrieval, category listing, search, submission drafting, submitting, own submissions, and voting. preview_tool and submit_tool are clearly separated by whether the listing is filed for review.

Naming Consistency4/5

Most tools follow a consistent verb_noun snake_case pattern (get_tool, search_tools, submit_tool). my_submissions breaks the pattern by using a possessive phrase instead of a verb.

Tool Count5/5

Seven tools is well-scoped for a directory-and-voting service: three discovery operations, three submission-related operations, and one engagement operation. There is no apparent bloat or redundancy.

Completeness4/5

Core discovery, submission, and upvote workflows are covered. Minor gaps exist, such as no explicit category browsing or update/delete for submissions, but agents can likely work around them via search and submission status.