Skip to main content
Glama

get_safety_config

Retrieve the current safety configuration to review active safety controls and parameters.

Instructions

Get current safety configuration.

Returns: Current safety configuration

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description must carry the behavioral burden. 'Get' implies a read-only operation, but the text never explicitly states that it makes no changes, has no auth requirements, or is safe to call repeatedly. It is minimally transparent but not richly so.

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

Conciseness4/5

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

The description is very short and front-loaded with the action. The 'Returns' line repeats the main idea rather than adding new information, but the overall text is compact and easy to parse.

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

Completeness3/5

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

For a zero-parameter getter, this is mostly complete, but with no annotations and no output schema, the description does not say what fields or structure 'current safety configuration' contains. An agent can invoke it, but the return value is only vaguely described.

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?

There are no parameters and the schema documents none, so there is nothing for the description to add about argument meaning. The description matches the schema's inference that invoking this requires no inputs.

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 object: 'Get current safety configuration.' It clearly distinguishes this operation from sibling tools like set_safety_config, so an agent knows what action it performs.

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

Usage Guidelines3/5

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

The description implies when to use it (when you need the current safety configuration) and the sibling set_safety_config implies the alternative, but no explicit guidance is provided about prerequisites, side effects, or how it relates to other configuration tools.

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