Skip to main content
Glama
Thdahwache

Komodo MCP Server

by Thdahwache

komodo_create_deployment

Create a new Komodo deployment from a configuration object, returning the created deployment details.

Instructions

Create a new deployment.

Args: config: Deployment configuration dictionary

Returns: Created deployment information

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
configYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.3/5.0
Behavior1/5

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

No annotations are provided, so the description carries the full behavioral burden, and it discloses nothing: no permission/auth requirements, no side effects, no indication of what happens on failure or conflict. For a mutation tool this is a complete gap.

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

Conciseness3/5

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

Front-loaded with the purpose in the first line, which is good. The 'Args'/'Returns' boilerplate is largely wasted since the schema documents the parameter and an output schema exists, making the 'Returns' line redundant.

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

Completeness2/5

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

Output schema presence means return values need not be explained, but the opaque nested 'config' object with 0% coverage is the critical missing piece, and there is no lifecycle or prerequisite context. The description is far too thin for a creation tool with a complex structured parameter.

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?

Schema coverage is 0% and the single required parameter is a free-form nested object with additionalProperties. The description only restates 'Deployment configuration dictionary', adding no field names, required keys, or expected shapes, so the agent cannot construct a valid config.

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?

States a clear verb+resource ('Create a new deployment'), which is unambiguous in isolation. However, it offers no differentiation from sibling creators like komodo_create_build or komodo_create_stack, so an agent must infer the boundary itself.

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 guidance on when to create a deployment versus a build or stack, no prerequisites (e.g., a server must exist first), and no mention of alternatives such as komodo_run_deployment. The agent is left to guess the lifecycle ordering.

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