Skip to main content
Glama
zzn199216

WorldRole MCP

by zzn199216

sync_application_replies

Fetch the latest job application replies from your IMAP inbox to identify and stop follow-ups on non-automatic responses, ensuring you only review real threads before classifying or answering.

Instructions

Read latest 50 INBOX headers via optional private IMAP SSL config. Exact In-Reply-To/References matching only, no body fetch or read flags. Stops follow-ups on matched nonautomatic replies. Review real thread with host mailbox before classifying/answering. No scheduler.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4.5/5.0
Behavior5/5

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

Beyond the annotations, it states exact matching behavior, no body fetch or read flags, and that it stops follow-ups on matched nonautomatic replies. This explains the side-effectful nature implied by readOnlyHint=false without contradiction.

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?

Every sentence conveys a distinct operational fact: scope, matching mode, side effects, safe behavior, and scheduling. No filler or repetition; front-loaded with the core purpose.

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 zero-parameter tool, it fully covers what it accesses, how it matches, what it does not do, its side effect, and a caution for downstream use. Nothing essential is missing for an agent deciding to invoke it.

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?

The tool has no schema parameterschers and the schema coverage is 100%, so there are no parameter semantics to document. The description adds context about an optional private IMAP SSL config, which is useful but not tied to a schema parameter.

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 gives a specific action ('Read latest 50 INBOX headers'), a source resource, and distinguishes this tool's job — matching replies via In-Reply-To/References and stopping follow-ups. It clearly separates this from sibling tools like get_applications and prepare_application.

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?

It communicates constraints (exact matching only, no body fetch, no scheduler) and a follow-up instruction to review the real thread before classifying/answering. However, it doesn't explicitly state when an agent should choose this tool versus a sibling, or under what conditions it should be skipped.

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