Skip to main content
Glama

create_testimonial

Add a new testimonial with reviewer details to your portfolio. Provide name, position, and comment to publish feedback.

Instructions

Create a new testimonial. Requires write permission.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesReviewer name
commentYesTestimonial text
companyNo
positionYesReviewer position/title
image_urlNo
is_activeNo
is_featuredNo
platform_nameNo
testimonial_dateNoYYYY-MM

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/5.0
Behavior3/5

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

With no annotations, the description carries the disclosure burden, and it does add one concrete behavioral detail: 'Requires write permission.' However, it does not disclose side effects beyond creation, validation behavior, idempotency, or what happens on failure, which would be useful for a mutation tool.

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 two short sentences with no filler. It front-loads the core operation and immediately adds the essential permission requirement, making every word earn its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a create operation with 9 parameters, no annotations, and no output schema, the description is too thin. An agent cannot confidently determine what optional fields mean, what format/constraints apply, or what the tool returns after creating a testimonial.

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

Parameters1/5

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

Schema description coverage is only 44%, leaving several parameters like company, image_url, is_active, is_featured, platform_name, and testimonial_date undocumented. The description does not compensate by explaining any of these, so an agent gets no guidance on the optional fields beyond their names.

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 the action clearly with a specific verb and resource: 'Create a new testimonial.' It distinguishes from list/get/delete/update siblings by using 'new,' though it does not explicitly differentiate from update_testimonial or other create_* tools beyond the resource name.

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 'Create a new testimonial' implies when to use it, but there is no explicit guidance about when not to use it or which sibling to choose instead, such as update_testimonial for existing testimonials. The permission requirement is a precondition, not an alternative-selection rule.

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