Skip to main content
Glama
sat899

Gmail MCP Assistant

by sat899

get_unread_emails

Fetch unread emails from a Gmail inbox to review new messages. Returns up to 5 by default, with a max_results option to control how many unread items are retrieved.

Instructions

Fetches a list of unread emails from the user's inbox.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
max_resultsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden and mostly does not: it never states that this is a read-only operation, what happens with pagination or truncation, whether results are capped, or what the returned list contains. Only the 'unread' and 'inbox' scope is conveyed.

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?

One compact sentence with the resource and scope front-loaded; nothing is wasted, though it is arguably under-specified rather than optimally concise.

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 one-parameter read tool with no output schema the description is minimally viable, but it omits the behavior of max_results and any notion of result ordering or limits, which an agent would want before calling.

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

Parameters2/5

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

The single parameter max_results has 0% schema description coverage, so the description is the only possible place to explain it, yet it says nothing about the parameter. Its default of 5, valid range, and unit of measurement are all left undocumented.

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 specific verb (fetches) and resource (unread emails) scoped to the user's inbox, so the operation is unambiguous. It does not explicitly differentiate from the sibling create_draft_reply, though the sibling's purpose is obviously distinct.

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 when-to-use or when-not-to-use guidance is given, nor is any prerequisite (e.g., authentication, mailbox state) mentioned. The agent must infer that this is the right call whenever unread mail is needed.

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

Deploy Server

Other Tools