Skip to main content
Glama

VibeHacker

My submissions

my_submissions
Read-onlyIdempotent

List the products you submitted and their review status. Requires a token.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

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

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already indicate readOnly, idempotent, and non-destructive behavior. The description adds the useful requirement that a token is needed and clarifies the scope as the caller's own submissions, going beyond the annotation-only picture.

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 a single sentence that states the core capability, the resource scope, the output, and the auth requirement without any filler. Every word contributes value.

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?

For a parameterless read-only tool, the description is complete: it names the resource, the output dimension (review status), and the auth requirement. The rich annotations cover safety, and no output schema exists, but the description sufficiently indicates what the caller will get.

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

Parameters4/5

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

The tool has zero parameters, and the schema coverage is 100% via an empty properties object. With no parameters to document, the description carries no parameter burden, so the baseline of 4 is appropriate.

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 action ('List'), a resource ('products you submitted'), and the key output ('review status'). This clearly distinguishes it from siblings like search_products or get_product, which target all products or a single product.

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 the tool is for viewing your own submissions and their review status, and notes that a token is required. However, it does not explicitly state when to prefer this over alternatives or provide exclusions, so usage guidance is mostly implied rather than 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

A3.9/5.0
Disambiguation4/5

Most tools target distinct actions or resources, but preview_product and submit_product overlap since submit_product also drafts the listing before filing it. The descriptions are enough to tell them apart, though an agent could briefly confuse them.

Naming Consistency4/5

Tool names mostly follow a clear verb_noun snake_case pattern: get_product, list_categories, search_products, submit_product, upvote_product. The main deviation is my_submissions, which uses a possessive noun phrase instead of an action verb.

Tool Count5/5

Seven tools is a well-scoped set for a product submission and voting directory. Each tool serves a meaningful part of the workflow without unnecessary redundancy or bloat.

Completeness4/5

The core workflow is covered: browsing categories, searching products, viewing a product, previewing and submitting listings, checking submission status, and upvoting. Minor gaps exist such as no update or delete for submissions, but these do not severely block the primary use case.