Skip to main content
Glama

read_range

Read raw cell values from a Google Sheets range by providing the spreadsheet ID and A1 notation such as Sheet1!A1:D50.

Instructions

Read a raw grid of cells from a spreadsheet.

Args: spreadsheet_id: The long token from the spreadsheet URL. a1_range: A1 notation, e.g. "Sheet1", "Sheet1!A1:D50" or "Sheet1!A:A".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
a1_rangeYes
spreadsheet_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations provided, the description carries the full behavioral burden but delivers only parameter documentation. It says nothing about auth requirements, rate limits, empty-cell handling, or how values are typed in the response, all of which matter for a spreadsheet read.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loaded one-line purpose followed by a compact Args block. Every line earns its place; only the format could be tidied, since the parameter docs live in the description rather than the schema.

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?

An output schema exists, so return values needn't be explained, and both params are covered. However, with zero annotation coverage the description omits any behavioral context (permissions, failure modes), leaving the definition minimally viable rather than complete.

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?

Schema description coverage is 0%, so the description must compensate, and it does: spreadsheet_id is explained as 'the long token from the spreadsheet URL' and a1_range is illustrated with three concrete A1 examples ('Sheet1', 'Sheet1!A1:D50', 'Sheet1!A:A'). This is helpful beyond the bare schema types.

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?

States a clear verb+resource: 'Read a raw grid of cells from a spreadsheet.' The word 'raw' implicitly distinguishes it from read_records, but no sibling is named explicitly, so it stops short of 5.

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?

There is no explicit when-to-use or when-not-to-use guidance, and no alternative tool is named. The contrast between 'raw grid' and structured siblings like read_records or find_rows is only implied, leaving the agent to infer selection.

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