Skip to main content
Glama

project

Check the comfy-cli workspace status or initialize a new one. Use status to see if a managed config exists, init to create comfy.yaml and directories.

Instructions

Report or create the operator-anchored comfy-cli project (project/1).

action="status" -> comfy project status; "init" -> comfy project init (creates comfy.yaml + dirs; project_already_exists if already governed — try action="status" first). comfy-cli walks up from ITS OWN cwd; an MCP client's cwd can't pin that, so with no COMFY_PROJECT set (absolute path, read once per process) both act on this server's cwd, unanchored — relative workflow_path/out_path/out_dir args land there too. where_default is comfy-cli's own; routing stays --where local.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionNostatus

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

A4.6/5.0
Behavior5/5

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

With no annotations, the description carries the full behavioral burden and does so impressively: it discloses side effects (creates `comfy.yaml` + dirs), error behavior (`project_already_exists`), cwd behavior, the one-time read of `COMFY_PROJECT`, and routing details. This is far beyond a basic one-line description.

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 dense but well-organized: purpose first, then action mapping, then environment/cwd caveats, then routing. Every sentence carries relevant information, though the final routing note is slightly cryptic and may require domain knowledge to interpret.

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?

Given the tool's complexity and the absence of annotations or an output schema, the description covers setup, side effects, errors, and environment dependencies thoroughly. The only notable gap is the lack of any description of the return value or output format, which an agent may need to interpret results after calling.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema only lists an `action` property with a default and no descriptions, so the description must compensate. It fully explains the two meaningful values (`'status'` and `'init'`), their effects, and the recommended order of calling. This is exactly what an agent needs to invoke the parameter correctly.

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 'Report or create the operator-anchored comfy-cli project', giving a specific verb and resource. It further disambiguates the action parameter by mapping 'status' and 'init' to concrete CLI commands, so an agent knows exactly what this tool does and how it differs from other MCP tools.

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 description gives clear context and a sequencing hint: try `action='status'` first before `'init'`, and explains the `COMFY_PROJECT` environment variable and cwd caveat. It does not name explicit alternatives or when-not-to-use conditions, but no close sibling exists among the listed tools.

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