Skip to main content
Glama
dockndevai

@dockndevai/mcp-outlook

Get message

get_message
Read-onlyIdempotent

Retrieve a specific Outlook email by its ID to access the full body, to/cc/bcc recipients, importance, and conversation ID. Works with IDs from message lists or search results.

Instructions

Fetch a single message by id with its full body, recipients (to/cc/bcc), importance, and conversation id. Get ids from list_messages or search_messages.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesMessage id (from list_messages or search_messages)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior, so the safety profile is covered. The description adds value by disclosing the exact response contents: body, recipients, importance, and conversation id, which is beyond annotation data.

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 concise sentences front-load the action and return fields, then provide the id-sourcing hint. There is no redundancy or 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?

With one required parameter, rich annotations, and the description listing the key fields returned, an agent has enough to call the tool correctly. Since there is no output schema, the description reasonably conveys the expected return content, though it does not address error/not-found behavior.

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% and the schema already documents that 'id' is a message id from list_messages or search_messages. The description repeats this guidance without adding new parameter semantics, so it meets the baseline but does not exceed it.

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 states a specific verb and resource: 'Fetch a single message by id' with its full body, recipients, importance, and conversation id. It distinguishes itself from sibling list/search tools by emphasizing the single-message-by-id scope.

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

Usage Guidelines4/5

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

It tells the agent where to obtain valid ids ('Get ids from list_messages or search_messages'), which acts as contextual usage guidance. It does not explicitly state when not to use this tool, but the id-sourcing instruction makes the workflow clear.

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