Skip to main content
Glama

runrunit_list_projects

List projects from Runrun.it to track and manage workflows, applying filters by client, group, active or closed status, and pagination for targeted results.

Instructions

List all projects from Runrun.it. Optional filters: client_id, project_group_id, is_closed, is_active, page, limit.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number (default 1)
limitNoItems per page (1-100)
client_idNoFilter by client ID
is_activeNoFilter by active state
is_closedNoFilter by closed state
project_group_idNoFilter by project group ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.8.1

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the burden of behavior disclosure. It states a read-only listing operation and enumerates filters, which is transparent about scope. However, it does not disclose pagination defaults, whether filters are mutually exclusive, or what the response contains.

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 short sentences front-load the action and then list filters in compact form. There is no filler or redundant wording.

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 simple list tool with six optional parameters fully documented in the schema, the description supplies adequate contextual shorthand. It could mention response shape or default pagination behavior, but the low complexity and lack of an output schema keep this gap minor.

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

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already describes every parameter at 100% coverage. The description restates parameter names but adds no extra semantics beyond confirming they are optional.

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?

Description opens with 'List all projects from Runrun.it', a concrete verb-resource pair that clearly identifies the operation. The 'projects' resource distinguishes it from sibling task-centric tools like runrunit_list_tasks.

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?

The description establishes a clear context: use this tool when the goal is to enumerate projects, and the optional filter list indicates how to narrow results. It does not explicitly name exclusions or compare with sibling list tools, but the resource distinction is sufficiently clear.

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