Skip to main content
Glama
S-CurveLabs

io.github.S-CurveLabs/longpath

Official
by S-CurveLabs

schedule_summary

Read-onlyIdempotent

Open a schedule file and get a concise summary of projects, dates, activity counts, CPM-computed start/finish, critical paths, float spread, and warnings. Use this first on any new schedule.

Instructions

Open a schedule file (.xer, .mpp, MS Project .xml, P6 .xml) and summarize it: projects in the file, data date, activity/relationship/WBS/calendar/resource counts by type and status, planned start, finish (stored and as computed by the CPM engine), critical and longest-path counts, float spread, scheduling options, and warnings from reading the file. Use this first on any new file. project = short name or id, needed only when the file holds several projects (the error lists them).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes
projectNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds valuable behavioral context: it reads and parses a file, computes CPM-derived values (planned finish as computed by the CPM engine), and can emit errors listing projects when `project` is omitted. This goes beyond the annotations without contradicting them.

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

Conciseness4/5

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

The description is dense but well-organized: the main summary content is front-loaded, followed by the usage directive and parameter clarification. It is longer than the typical one-liner, but every clause adds information about what the tool returns or how to invoke it correctly. Slight redundancy in listing file formats twice could be trimmed, but it remains efficient.

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

Completeness4/5

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

For a read-only summary tool with no output schema, the description covers the input formats, the scope of the summary, the optional parameter, and the error behavior. It doesn't specify the exact output structure, but given the tool's purpose as a high-level overview and the absence of an output schema, the description is sufficiently complete for an agent to call it correctly.

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

Parameters4/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 carry the parameter meaning. It does: `path` is implied as the schedule file to open, and `project` is explicitly defined as 'short name or id, needed only when the file holds several projects.' This fully compensates for the schema's lack of descriptions.

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

Purpose5/5

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

The description opens with a specific verb ('Open... and summarize it') and a precise resource (schedule files with enumerated formats), then enumerates the exact summary contents. It clearly distinguishes itself from siblings like list_activities or run_cpm by being the first-stop overview tool.

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

Usage Guidelines5/5

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

Explicitly instructs 'Use this first on any new file,' which is a clear when-to-use directive. It also explains the `project` parameter's conditional necessity and what happens when it's missing (the error lists projects), effectively guiding the agent on when to supply it.

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