Skip to main content
Glama

List / search projects

list_projects
Read-only

Browse or search the Shipyard feed. Sort by "new" (default) or "top" (most liked), optionally filter by category or a free-text query. Set mine=true to list only your own projects (needs an API key).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
mineNoOnly your own projects (requires an API key).
sortNoOrder: "new" (default) or "top".
limitNoMax results (default 20, max 100).
queryNoFree-text search over title / pitch / category.
offsetNoZero-based offset (default 0, max 1000000). Pass pagination.next_offset to continue the same query.
categoryNoFilter to a single category.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • addedInput schema / properties / offset
      Added value: +{
      +  "description": "Zero-based offset (default 0, max 1000000). Pass pagination.next_offset to continue the same query.",
      +  "maximum": 1000000,
      +  "minimum": 0,
      +  "type": "integer"
      +}
  2. Changed1 schema field changed
    • addedInput schema / properties / query / maxLength
      Added value: +100
  3. First observed

TDQS

A4/5.0
Behavior3/5

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

The annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds context about behavior — sort order, filtering, mine requiring an API key — but does not disclose details like pagination behavior or rate limits. It doesn't contradict annotations, and given readOnlyHint coverage, a 3 is appropriate because the description contributes some but not extraordinary behavioral context.

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?

The description is two sentences, front-loaded with the core action, then lists the key variations and the mine constraint. There is no waste — every clause earns its place.

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 browse/search tool with zero required parameters and a 100%-covered schema, the description is nearly complete. It doesn't explain response format — but there's no output schema and it's a read-only listing tool, so an agent knows the shape will mirror a project list. Minor gap: pagination is described in the schema (offset/next_offset) but not surfaced in the description text, yet the schema covers it.

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?

Schema description coverage is 100%, so the schema documents each parameter. The description overlaps with the schema by summarizing sort, mine, query, and category, but it adds little new meaning beyond reinforcing the API-key requirement for mine and the default sort order. The baseline 3 applies because the schema carries the load.

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 clearly states the tool browses or searches the Shipyard feed, distinguishing it from siblings like get_project (which fetches a single project) and ship_project (which creates one). It also enumerates sort, filter, and query capabilities, making the purpose unmistakable.

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 provides clear context on when to use the tool (browsing or searching projects in a feed) and specifies that mine=true requires an API key. It doesn't explicitly name alternatives or exclusion criteria, but the purpose is specific enough that an agent can infer when list_projects is the right choice versus ship_project or get_project.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources