Skip to main content
Glama
linusdevx
by linusdevx

Get message processing log attachments

get_message_processing_log_attachments
Read-only

Retrieve payload and trace attachments for a specific SAP CPI message processing log entry.

Instructions

Get attachments (payloads, traces) for a specific message processing log entry

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
topNo
skipNo
filterNo
selectNo
orderbyNo
message_guidYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, and the description's use of 'Get' is consistent, so there is no contradiction. However, the description adds only minimal behavioral context beyond the annotation, such as the fact that attachments include payloads and traces. It does not disclose pagination behavior, error handling, or any side effects. Since the annotation covers the safety profile, this is acceptable but not exceptional.

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?

The description is a single, tightly written sentence with no filler. It front-loads the verb and resource, then adds scope. Every word contributes to the meaning. This is an exemplary example of conciseness.

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

Completeness1/5

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

Given the tool has 6 parameters, none described in the schema, and no output schema, the description is grossly incomplete. It provides no information about what the response looks like, how to use the optional parameters, or any constraints. An agent calling this tool would be largely guessing on parameter formats and expected results. This is far below the minimum viable definition for a tool of this complexity.

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

Parameters1/5

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

The schema has 0% description coverage, and the description only indirectly references the required parameter message_guid ('specific message processing log entry'). The other five parameters (top, skip, filter, select, orderby) are entirely unexplained. An agent would have no idea what these OData-style query parameters do or how to format them. The description fails to compensate for the missing schema descriptions.

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 clearly states the action (get), the resource (attachments), and the scope (for a specific message processing log entry). It even gives examples of what attachments are (payloads, traces), which helps disambiguate from sibling tools like get_message_processing_logs or get_message_processing_log_errors. This is a precise and unambiguous definition.

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 guidance is given on when to use this tool versus alternatives. It does not mention any exclusions, prerequisites, or conditions that would help an agent decide between this and the many sibling get_* tools. The only implicit signal is the name itself, but no explicit routing or comparison is provided.

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