Skip to main content
Glama

config_manage

Manage configuration data by reading/writing INI ConfigFile entries, parsing/generating JSON, and evaluating expressions.

Instructions

ConfigFile, JSON, and Expression Utilities.

Ops:

  • config_read(file_path, section="", key="") Read values or entire sections from an INI ConfigFile.

  • config_write(file_path, section, key, value) Write a section and key value into an INI ConfigFile.

  • json_parse(json_string) Parse a JSON string into Godot Variant data structure.

  • json_generate(data, indent="") Serialize data into a formatted JSON string.

  • expression_eval(expression_string, input_names=[], input_values=[]) Evaluate a mathematical or logic expression via Godot Expression.

Canonical call shape: {"op": "<verb>", "params": {...}}. Flat op parameters are accepted as a compatibility alias when the client transmits them; op and session_id remain top-level.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
opYes
paramsNo
session_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv5.0.28

TDQS

A4.2/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 full behavioral burden. It describes the primary effect of each operation, including that config_write writes a section/key/value into an INI file and json_generate serializes data. However, it does not disclose side effects like overwriting behavior, failure modes, or permission requirements.

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 compact and well-organized: a one-line domain summary, a bulleted list of operations with signatures, and a final call-shape contract. Every section earns its place, with no filler or redundancy.

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 multi-operation tool with an opaque generic schema, the description provides the complete catalog of operations, their parameter signatures, and the canonical call shape. The presence of an output schema covers return-value details. Minor gaps remain around expression syntax and whether writes overwrite existing values, but the description is sufficient for selection and invocation.

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 enumerating every operation's parameters with names, defaults, and brief semantic context, e.g., file_path, section, key, value and expression_string with input_names/input_values. It lacks detailed type/format specs, but the signatures add significant meaning beyond the generic op/params/session_id schema.

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 opens with a domain summary ('ConfigFile, JSON, and Expression Utilities') and then lists five specific operations, each with a clear verb and resource: read/write INI ConfigFile, parse/generate JSON, and evaluate expressions. This makes the tool's purpose specific and distinguishes it from the many *_manage sibling tools by scope.

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 op list provides clear routing between the five operations: use config_read/config_write for INI, json_parse/json_generate for JSON, and expression_eval for expressions. It does not explicitly state when not to use this tool or compare against siblings, but the internal usage context is strong.

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

Deploy Server

Other Tools