Skip to main content
Glama
conorbronsdon

Google Workspace (GWS) MCP Server

drive_comments_get

Read-only

Retrieve a specific comment from a Google Drive file using its comment ID. Optionally include deleted comments and select fields to return.

Instructions

Get a single comment on a file.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fieldsYesFields to include (required by the API for this resource, e.g. "id,content,author,resolved,replies")
fileIdYesThe file the comment belongs to
commentIdYesThe comment to retrieve
includeDeletedNoWhether to return the comment if it has been deleted (it will have no content)

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.4.1

TDQS

B3.1/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, covering the safety profile. The description adds no behavioral detail beyond the name—it doesn't mention how includeDeleted affects results or that fields is required. It neither contradicts annotations nor provides additional value.

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?

A single, tight sentence with zero extraneous words. It is immediately scannable and front-loaded with the core action.

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

Completeness3/5

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

For a simple read operation with full schema coverage and a read-only annotation, the description is minimally adequate. However, it lacks any mention of the response format or the effect of includeDeleted, and there is no output schema to compensate. It could benefit from a note about the returned comment object, but it is not severely incomplete.

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%, with all parameters (fileId, commentId, fields, includeDeleted) described in the schema. The description adds no extra meaning beyond the schema, so the baseline score of 3 is appropriate.

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 a clear verb ('Get') and a specific resource ('a single comment on a file'), which distinguishes it from sibling tools like drive_comments_list or drive_comments_create. It implies retrieval by IDs, though it doesn't explicitly name fileId and commentId; the schema provides those. This is clear but not exhaustive.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives. The description doesn't mention that it is for retrieving a specific comment by ID, nor does it contrast with drive_comments_list for listing all comments. The agent must infer usage from the name alone.

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