nolag_create_app
Create a new app in the project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | App name | |
| blueprintId | No | Optional blueprint ID to use as template | |
| description | No | App description |
Create a new app in the project
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | App name | |
| blueprintId | No | Optional blueprint ID to use as template | |
| description | No | App description |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must disclose behavioral traits, but it only states a mutation ('Create') without mentioning side effects, permissions, reversibility, or output. This is a significant gap for a tool that creates a persistent resource.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with no redundant words, making it easy to parse quickly. It is appropriately brief, though it sacrifices detail for brevity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (3 parameters, no output schema) and absence of annotations, the description is incomplete. It doesn't explain return behavior, relationships to sibling entities, or any preconditions, leaving significant gaps for an agent to use it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides full descriptions for all three parameters (name, blueprintId, description), so the schema already covers the semantics. The tool description adds no extra parameter context, which keeps it at the baseline of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Create') and the resource ('a new app'), distinguishing it from sibling create tools like nolag_create_actor or nolag_create_scope. However, it lacks additional context about what an 'app' represents in this project, so it doesn't fully differentiate beyond the resource name.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool versus alternatives, such as nolag_create_agents_app or nolag_create_orchestrator. No prerequisites, exclusions, or alternative scenarios are mentioned, leaving the agent without enough information to choose between related create tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.