Skip to main content
Glama

list_repos

List or search GitHub repositories linked to your SnapDeploy account. If GitHub isn't connected, get the link to connect it.

Instructions

List (or search) the GitHub repositories connected to this SnapDeploy account. If GitHub is not connected yet, returns the connect link for the user.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
queryNoSearch text; omit to list

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It usefully discloses the not-connected edge case (returns a connect link), but it does not state that the operation is read-only, how pagination works, authentication requirements, or what the success 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 tightly written sentences with the main action front-loaded and zero filler. Every sentence adds useful information.

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

Completeness2/5

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

The tool has no output schema and no annotations, so the description must explain return behavior; it only covers the connect-link case. The page parameter is left undocumented, and the normal successful response format is not described, leaving an agent to guess.

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

Parameters2/5

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

Schema description coverage is only 50%: query has a description but page has none. The description adds no parameter detail beyond the schema, especially failing to explain the page parameter or pagination behavior.

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 names the specific verb and resource: list or search the GitHub repositories connected to the SnapDeploy account. It clearly differentiates from sibling tools like list_apps by scoping to GitHub repositories and the account connection.

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

Usage Guidelines3/5

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

The usage context is implied: call this when you need the account's connected GitHub repositories, and the connect-link sentence covers the not-connected case. However, there is no explicit guidance about when to prefer this over sibling tools or when to use list versus search.

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