Skip to main content
Glama

Update J3 Skin Setting

update_j3_skin_setting

Update a Journal3 skin setting in OpenCart. Provide the setting name and value, and optionally the skin ID, to modify theme configurations.

Instructions

Update a Journal3 skin setting.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
skin_idNo
setting_nameYes
setting_valueYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.0

TDQS

D1.8/5.0
Behavior1/5

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

No annotations are provided, so the description carries the full behavioral burden, and it discloses nothing beyond the bare verb. It does not say whether the setting must already exist, what permissions are required, whether the change is reversible, whether caching persists, or what side effects occur — critical omissions for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single short, front-loaded sentence with zero waste, but it is under-specified rather than deliberately concise. It earns its words only because there are so few of them.

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

Completeness2/5

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

An output schema exists so return values need not be explained, but for a 3-parameter mutation tool with no annotations and 0% parameter coverage the description is far too thin. Nothing about the Journal3 skin-setting domain, identifier formats, or mutation effects is conveyed.

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?

Schema description coverage is 0% and the description adds no parameter meaning at all. The agent is not told what form setting_name takes, whether setting_value must be JSON-encoded, or what skin_id=1 (the default) actually selects.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description is essentially a restatement of the tool title ('Update J3 Skin Setting' -> 'Update a Journal3 skin setting'), a tautology per the rubric. It does not distinguish this tool from its near-identical siblings update_j3_setting, update_setting, or update_j3_module.

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?

There is no guidance on when to use this tool versus update_j3_setting, update_setting, or the read-side get_j3_skin_settings. No prerequisites, no exclusions, no context of any kind.

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