Skip to main content
Glama

List agent config targets and paths

demo_list_supported_agents
Read-onlyIdempotent

Lists the AI agent configuration targets that mcptoon's sync command can write, showing the resolved file path for each in the current environment.

Instructions

Reports the AI agent configuration targets mcptoon's sync command knows how to write, each with the path it resolves to in this process's environment. ...

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
agentsYesOne entry per agent mcptoon sync can write to.
platformYessys.platform of the machine answering the call.
installed_checkYes"not performed": paths are derived, never stat'd.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.7.14

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, non-destructive and closed-world, so the safety profile is covered. The description adds genuinely useful context that paths are resolved specifically in this process's environment, which hints at environment dependence, but nothing about ordering or side effects on sync.

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?

A single front-loaded sentence conveying the resource and the returned path semantics with no filler. The trailing ellipsis suggests the text is truncated, so it is not fully polished.

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?

With an output schema present, the description need not enumerate return fields, and it does describe the shape of the result (targets plus resolved paths). For a no-arg, read-only listing tool this is close to sufficient, the only shortfall being absent usage context.

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?

The tool takes zero parameters, so there is nothing for the description to disambiguate. Schema coverage is 100% and no parameter meaning is left unstated.

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 states a specific verb and resource (reports the AI agent configuration targets that mcptoon's sync command can write) and adds scope via the resolved path detail. It is clear what the tool returns, but it never names or distinguishes itself from siblings like mcptoon_manifest or demo_describe_runtime.

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 when-to-use or when-not-to-use guidance, and no alternative tool is mentioned. An agent must infer from the name alone that this is the discovery step before running sync.

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