Skip to main content
Glama

wake_get

Retrieve a wake-up's complete, untruncated body by ID to see exactly what it will say or verify updates made by wake_update.

Instructions

Read one wake-up by id, in this project, with its UNTRUNCATED body. wake_list truncates body at 120 chars; use this to see exactly what a wake will say, or to confirm what wake_update just changed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
wake_idYes
project_idNoDifferent project override. Use ONLY when the user explicitly asks for another project by name; otherwise stay in the current scope, even when results are empty.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the disclosure burden. It surfaces the non-obvious untruncated-body behavior and the project scope. It does not spell out error behavior or return shape, but for a simple read the core behavioral traits are disclosed.

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?

Two sentences, with the core behavior front-loaded and the trade-off against wake_list in the second sentence. No 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 low-complexity getter with one required parameter, the agent has enough to select and invoke it correctly: the id, project scoping, and why the untruncated body matters. Omitted response-shape details are not blocking given the tool's simplicity.

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 schema already documents project_id thoroughly; the description adds only that wake_id identifies the wake, which is thin for the one required parameter. At 50% schema coverage, a stronger description of wake_id (e.g., where to obtain it) would help.

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 opens with a specific action and object: 'Read one wake-up by id, in this project, with its UNTRUNCATED body.' It also distinguishes itself from wake_list by naming the truncation difference, so an agent can select it without opening a schema.

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

Usage Guidelines5/5

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

It explicitly names wake_list as the alternative and gives two concrete trigger conditions: seeing exactly what a wake will say, and confirming a wake_update change. This is direct when-to-use guidance.

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