get_template
Get one industry template by slug: its task list with durations, ready to adapt and pass to create_gantt.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Template slug from list_templates |
Get one industry template by slug: its task list with durations, ready to adapt and pass to create_gantt.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Template slug from list_templates |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the behavioral disclosure burden. It clearly states that the operation retrieves a read-only template and what the result contains. It does not describe edge-case behavior like invalid slugs, but for a simple getter this is adequate.
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, front-loaded sentence with no filler. It communicates the target, scope, return content, and downstream use in an efficient and readable way.
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?
For a one-parameter retrieval tool, the description covers the main operational need: what is returned and how the result is used. Since no output schema exists, more detail about the exact structure of 'task list with durations' could help, but the description is still sufficient for selection and invocation.
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?
Schema description coverage is 100%, so the schema fully documents the slug parameter. The description repeats 'by slug' but does not add substantive semantic detail beyond the schema's own reference to list_templates.
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 uses a specific verb and resource: 'Get one industry template by slug', and clarifies the content returned ('task list with durations'). It also distinguishes itself from list_templates by emphasizing retrieval of a single template.
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?
The description clearly implies when to use this tool: when you need a specific industry template to adapt before passing it to create_gantt. It does not explicitly mention when not to use it or name alternatives, but the workflow context is sufficiently clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool has a clearly distinct purpose: create_gantt generates a chart, get_template retrieves a single template, list_templates provides an overview, and schedule_project computes scheduling metrics without a chart. The overlap in input shape between create_gantt and schedule_project is intentional and clearly differentiated by output and usage context.
All tool names follow a consistent verb_noun pattern in snake_case: create_gantt, get_template, list_templates, schedule_project. The verbs (create, get, list, schedule) clearly indicate the action, and the nouns (gantt, template, schedule) are directly related to the domain.
With only 4 tools, the server is well-scoped for its purpose of providing Gantt chart creation and scheduling. Each tool is necessary and non-redundant, covering the core workflow without unnecessary bloat.
The toolset covers the main workflow: listing templates, fetching a template, creating a chart, and computing a schedule. The only notable gap is the lack of update/delete operations, but since charts are stateless creations, these are not essential for the domain. The surface is complete for its stated purpose.