Skip to main content
Glama

create_compose

Creates a Docker Compose project in 1Panel from a provided name and YAML content, enabling multi-container application deployment and management.

Instructions

Create compose

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
contentYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

D1.3/5.0
Behavior1/5

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

Annotations are absent, so the description carries the full burden of behavioral disclosure, and it provides none. It does not state whether creation requires elevated permissions, whether the compose is started immediately or left stopped, what happens on name conflict, or any side effects.

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

Conciseness2/5

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

At two words, this is not conciseness but under-specification. There is nothing to front-load because no meaningful information was written at all.

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

Completeness1/5

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

With no annotations, no output schema, and zero parameter documentation for a mutation tool taking two required inputs, the description is entirely inadequate. An agent cannot reliably determine what the parameters should contain or what the call will produce.

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

Parameters1/5

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

Both required parameters (name, content) have 0% schema description coverage and are completely undocumented in the description. There is no hint about content format (YAML?), size limits, or valid naming conventions, leaving the agent with no semantic guidance.

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

Purpose2/5

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

"Create compose" merely restates the tool name (create_compose) with no added detail. There is no indication of what a 'compose' is in this context, no mention of Docker Compose vs. anything else, and no differentiation from the many sibling create_* tools like create_container, create_website, or create_network.

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

Usage Guidelines1/5

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

No guidance whatsoever on when to use this tool versus alternatives such as update_compose, start_compose, or the container-creation siblings. Nothing indicates prerequisites (e.g., a running Docker environment) or context.

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