Skip to main content
Glama

ozon_use_cabinet

Idempotent

Switch the active cabinet so subsequent Ozon Seller API calls use its credentials. Provide the cabinet name to select the account.

Instructions

Switch the active cabinet. Subsequent API calls use its credentials.

Args: name: the cabinet to activate (see {svc}_list_cabinets).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.5.3

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already mark the operation as non-read-only and idempotent, and the description adds the key behavioral detail that this changes the credential context for subsequent API calls. It does not contradict the annotations, and it sufficiently discloses the stateful side effect for such a small tool.

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 focused sentences plus an Args block, with the core behavior first and no filler. Every sentence adds useful information and the structure is easy to scan.

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, state-switching tool with an existing output schema and idempotent annotation, the description is complete enough to call correctly. It explains the action, the parameter, and the effect on subsequent calls without needing extra detail.

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?

Schema description coverage is 0%, but the description compensates by defining name as 'the cabinet to activate' and pointing to list_cabinets for obtaining valid values. This adds meaning beyond the raw schema field, though it stops short of specifying the exact expected format or identifier type.

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 and resource: 'Switch the active cabinet' and explains the functional consequence: subsequent API calls use its credentials. This clearly distinguishes it from list/add/remove/set-key cabinet tools and from use_cabinet tools for other providers.

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 clearly conveys the context for use: call this when you need to activate a different cabinet so later API calls authenticate with its credentials. It references {svc}_list_cabinets as the source of valid names, but it does not explicitly state when not to use this tool or name an alternative.

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