list_entries
List timeline entries of a project (newest first)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | Project ID |
List timeline entries of a project (newest first)
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | Project ID |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. It discloses the ordering behavior ('newest first') and implies a read-only listing operation, but it does not mention pagination, response shape, or any limits. This is acceptable for a simple list tool but not richly transparent.
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 that conveys resource, scope, and ordering with no wasted words. Every element earns its place.
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 simple one-parameter listing tool, this description is nearly complete: the agent knows what to call, which project to provide, and the expected order. The main gaps are the lack of output schema details and any guidance on alternatives, but these are minor for this complexity level.
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 schema already describes projectId as 'Project ID' with 100% coverage, so the baseline is 3. The description's phrase 'of a project' adds minimal semantic context by linking the parameter to the listed entries, but it provides no additional format or constraint details.
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 states a specific verb ('List'), a specific resource ('timeline entries'), and a scope ('of a project'), which clearly distinguishes this from sibling list tools like list_tasks and list_projects. Adding '(newest first)' further clarifies the expected output ordering.
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 implies usage: call this when you need a project's timeline entries in reverse chronological order. However, it does not explicitly contrast with alternatives such as search_entries, nor does it state when not to use it.
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.