Skip to main content
Glama
deanchong
by deanchong

post_application

Destructive

Create a new TestMonitor application with a name and optional description to organize and manage related test assets.

Instructions

Create an application. Create a new application.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.3/5.0
Behavior2/5

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

Annotations already declare destructiveHint=true, readOnlyHint=false, openWorldHint=true, and idempotentHint=false, so the safety profile is covered. The description adds nothing beyond these — it does not disclose side effects, required permissions, what gets created, or the non-idempotent nature (which annotations already cover). With annotations doing the heavy lifting, the description's contribution is essentially zero.

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?

The description is only two sentences, but the second is a pointless restatement of the first ('Create an application. Create a new application.'). This is under-specification disguised as brevity — the repetition wastes space that should be used for missing usage or structural detail.

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?

For a mutation tool that creates a nested structure (body.name required, body.description optional) with no output schema and no annotation relief on the description side, the definition is far too thin. It does not explain the request envelope, expected response, or permission requirements, leaving an agent with almost no guidance beyond the tool name and schema.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate but does not. The one required 'body' parameter with nested 'name' and 'description' properties is not explained in the description at all; the schema itself provides property descriptions but no overall envelope guidance. The description leaves a nested-object parameter entirely unaddressed.

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

Purpose3/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 ('Create an application'), which is clear enough on its own. However, it offers zero distinction from siblings like put_application or post_application's own family, and the sentence is simply repeated verbatim ('Create a new application'). It is neither wrong nor misleading, but the repetition adds no clarity.

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?

No when-to-use guidance is provided. The description does not mention the alternative update tool (put_application), prerequisites (e.g., needing a project or workspace context), or any condition under which an agent should pick this over other creation endpoints. Usage is implied only.

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