Skip to main content
Glama

poll_email_test

Idempotent

Trigger parsing of the latest email-test message to retrieve full authentication and content analysis. Returns 'pending' if no message arrived yet. Use after user reports sending the test email.

Instructions

Process the latest received message in an email-test session. Idempotent POST: if no message has arrived yet, returns 'pending'; if a message arrived since the last call, parses it and returns full authentication + content analysis. Requires testId from create_email_test. Use to actively trigger parsing after the user reports sending the test mail; use get_email_test for passive status polling without processing. No auth, no destructive side effects.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
testIdYesEmail test ID returned by create_email_test

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.10.0
    • removedInput schema / additionalProperties
      Removed value: -false
  2. First observedv0.1.0

TDQS

A4.7/5.0
Behavior5/5

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

Even though idempotentHint and destructiveHint annotations exist, the description adds valuable behavioral detail: it is an idempotent POST, returns 'pending' if no message, and parses only messages received since the last call. It also explicitly states no auth and no destructive side effects.

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?

Three sentences, front-loaded with the core action, followed by behavior, prerequisites, usage guidance, and safety. Every sentence contributes meaning without redundancy.

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

Completeness5/5

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

For a single-parameter stateful tool with no output schema, the description sufficiently explains lifecycle behavior, return states, prerequisite ID source, and relationship to sibling tools. No significant informational gap remains.

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 description coverage is 100% for the single testId parameter, so the schema already carries the semantic weight. The description only repeats that testId comes from create_email_test without adding new parameter detail, meeting the baseline.

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?

Description clearly states it processes the latest received message in an email-test session, distinguishing it from sibling polling tool get_email_test. The verb 'Process' and resource 'email-test session' are specific and non-tautological.

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?

Explicitly tells when to use this tool ('actively trigger parsing after the user reports sending the test mail') and when to use the alternative ('use get_email_test for passive status polling without processing'). This is strong, actionable guidance.

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