Skip to main content
Glama

List Netrun projects

netrun_list_projects
Read-only

Lists all projects with their id, kind, status, and public URL to help you locate the project_id needed for other Netrun operations.

Instructions

All projects of the account with id, kind, status and public URL. Use it to find project_id for other tools.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior3/5

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

The readOnlyHint annotation already declares this is a safe read operation. The description adds that it lists all projects of the account and includes specific fields, which is useful but does not go deeper into behavior such as pagination or response format.

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

Conciseness5/5

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

Two concise sentences: the first states the resource and fields, the second states the tool's practical purpose. No filler or repetition of the title.

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

Completeness5/5

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

For a parameterless read-only list tool with a clear output field list, the description tells an agent everything needed to invoke it and understand the result. The annotation covers safety, and no output schema is necessary given the explicit field enumeration.

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?

The tool has zero parameters, so the description carries little parameter burden. The 100% schema coverage is vacuous, and the description appropriately focuses on the output rather than inputs.

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?

States a specific verb ('List'), resource ('projects'), and the returned fields (id, kind, status, public URL). The stated purpose of finding project_id for other tools distinguishes it from the sibling tools like netrun_status or netrun_publish.

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

Usage Guidelines4/5

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

Explicitly says to use it to find project_id for other tools, giving clear context for when it is needed. It does not mention exclusions, but with zero parameters and no real alternatives for listing projects, the guidance is sufficient.

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