project_list
Lists registered projects and identifies the currently selected one, helping you orient shared sessions.
Instructions
List registered projects and the currently selected one.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Lists registered projects and identifies the currently selected one, helping you orient shared sessions.
List registered projects and the currently selected one.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It states the tool lists projects and the selected one, which adequately describes its read-only nature. It does not disclose error behavior or output format, but for a simple list operation this is minimally sufficient.
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. Every word contributes to conveying the tool's purpose.
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 zero-parameter listing tool, the description covers the essential function. It could mention what the output looks like (e.g., a list of project IDs), but without an output schema, the lack of detail is acceptable for such a simple operation.
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 tool has zero parameters and the schema coverage is 100% (an empty schema). The description adds no parameter details because there are none to document, which aligns with the baseline of 4 for a zero-parameter tool.
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 tool lists registered projects and identifies the currently selected one. This is a specific verb-resource combination that distinguishes it from siblings like project_add and project_select, which add or change state.
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 purpose implies a read-only query operation, and given the tool has no parameters, it is obvious when to use it for viewing projects. However, it does not explicitly mention when not to use it or suggest alternatives like project_select for changing the selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.