Skip to main content
Glama

config_publish

Publish clean local Personal Agent Config baseline to its configured Git upstream safely, without force-pushing.

Instructions

Push the clean local Personal Agent Config baseline to its configured Git upstream without force-pushing.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv3.2.0

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already signal that this is a write operation that is not destructive; the description adds meaningful context by specifying that it will not force-push and requires a clean local baseline. This goes beyond the structured annotations and helps an agent understand the safety profile of the operation.

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, tightly worded sentence that front-loads the core action and includes only essential qualifiers. No redundant or filler content is present.

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 zero-parameter tool with annotations covering the read/write and destructive profile, the description adequately covers the operation, source, destination, and safety constraint. It does not describe failure behavior when the upstream has diverged, but that is a minor omission given the low complexity and available annotations.

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 zero parameters, and the input schema is empty, so there is nothing to document. The description's reference to a 'configured Git upstream' makes clear that the target is preconfigured rather than passed as an argument, which is sufficient context.

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

Purpose4/5

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

The description clearly states the action ('push'), the object ('clean local Personal Agent Config baseline'), and the destination ('configured Git upstream'), with an explicit safety constraint ('without force-pushing'). It is specific enough to understand what the tool does, though it does not explicitly differentiate itself from sibling tools like config_sync.

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 phrase 'clean local Personal Agent Config baseline' implies this tool should be used when the local configuration is clean and ready to publish, but it does not provide explicit guidance on when to choose this over config_sync, config_status, or config_rollback. Usage context is implied rather than stated.

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