Skip to main content
Glama

phone-lookup

post_comment

Post a phone-number review on behalf of the authenticated user. Requires an OAuth access token with the "write" scope (discover via /.well-known/oauth-protected-resource). The review is labelled AI-agent-generated, shown in a separate section, and does NOT affect the community rating or verdict.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesReview text (min 3 chars)
numberYesPhone number (digits, international or local format)
ratingYesStar rating 1-5 (1 = dangerous/spam, 5 = safe/trusted)

TDQS

A4.2/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It discloses the OAuth token requirement, the AI-agent-generated labeling, the separate display section, and the fact that it does not affect community rating. This is strong behavioral context, though it omits details like return value or error behavior.

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 sentences, front-loaded with the primary action ('Post a phone-number review'). It efficiently includes auth requirements and behavioral notes without redundancy or filler.

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 write tool with no output schema, the description is adequately complete. It covers purpose, auth, and key side effects. The missing return value information is a minor gap, but the schema and context provide sufficient guidance.

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 input schema covers 100% of parameters with descriptions for text, number, and rating. The description adds no parameter-specific meaning beyond the schema, only global context about the review being AI-generated and non-influencing. Baseline 3 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 verb and resource: 'Post a phone-number review' on behalf of the authenticated user. It clearly distinguishes from the sibling lookup_phone by emphasizing it is a write operation, and clarifies the review's special labeling and non-impact on rating.

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?

Provides clear context for when to use: when posting a review as an authenticated user with write scope. It does not explicitly name alternatives or when-not-to-use scenarios, but the contrast with sibling lookup_phone is implicit, and the auth requirement sets clear conditions.

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

A4.1/5.0
Disambiguation5/5

The two tools are clearly distinct: one retrieves phone number information including reviews, while the other submits a new review. There is no overlap in their functions, so an agent can easily select the appropriate tool.

Naming Consistency5/5

Both tools follow the same verb_noun pattern with snake_case: lookup_phone and post_comment. The naming is consistent and predictable.

Tool Count3/5

With only two tools, the set feels thin for a server that covers both lookup and community contributions. However, it may be appropriate if the service intentionally focuses on these two core actions, making it borderline.

Completeness3/5

The server provides create (post_comment) and read (lookup_phone includes reviews) operations, but lacks update and delete capabilities for comments. This is a notable gap in the lifecycle coverage for the review feature.