Skip to main content
Glama
scottehastings16

Adobe Target MCP

getMbox

Retrieve detailed information for a named mbox, including location ID, name, and audience IDs.

Instructions

Get details of a specific mbox by name, including location ID, name, and associated audience IDs

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
mboxNameYesThe name of the mbox (e.g., "target-global-mbox", "hero-mbox")

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

A4/5.0
Behavior3/5

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

With no annotations provided, the description carries the behavioral disclosure burden. It conveys the read-only nature through 'Get' and lists the main returned fields, which is helpful. However, it does not mention error behavior, authorization needs, or the exact response structure, leaving some gaps.

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 front-loaded sentence that leads with the action and resource, then lists the relevant data points. Every word earns its place, with 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?

For a one-parameter read tool with no output schema, the description adequately covers the input and the key returned fields. The word 'including' implies there may be additional unspecified fields, and the exact JSON shape is not given, but this is a minor gap for such a simple operation.

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%, with mboxName already documented as the mbox name with concrete examples. The description's 'by name' adds no new parameter-level meaning beyond what the schema provides, so the baseline score of 3 is appropriate.

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 uses a specific verb ('Get details'), a precise resource ('a specific mbox by name'), and enumerates the returned content (location ID, name, associated audience IDs). This clearly distinguishes it from siblings like listProperties, getABActivity, and listActivities, which target different resources.

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?

The description makes the usage context clear: call this tool when you need details of a single named mbox. It does not explicitly name alternatives or exclusion conditions, but among the sibling tools, none other targets a specific mbox, so the context is sufficient for an agent to select it.

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