Skip to main content
Glama
Pu11en

all-git

by Pu11en

get_catalog_status

Check local catalog coverage counts for videos, descriptions, captioned videos, repos, mentions, and enrichment data. Works offline without network access.

Instructions

Read local catalog coverage numbers: videos, descriptions, captioned videos, repos, mentions, and enrichment counts. Never contacts the network.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
deadYes
reposYes
videosYes
versionYes
enrichedYes
mentionsYes
descriptionsYes
captioned_videosYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations, the description carries the full burden and does so well: 'Read' signals no side effects, and 'Never contacts the network' discloses a key operational trait beyond the tool name. It also enumerates the coverage categories, so behavior is predictable.

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?

A single sentence front-loads the core action and resource, lists the result categories compactly, and ends with the key network behavior. Every phrase earns its place.

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 status tool with an output schema present, the description is complete: it states what is read, what metrics are included, and that no network access occurs. The agent can call it correctly without further information.

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?

There are zero parameters, so there is nothing for the description to disambiguate. The baseline of 4 applies; the tool takes no input and the schema confirms it, so no further parameter explanation is needed.

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 a specific verb ('Read') and a precise resource ('local catalog coverage numbers'), and lists the exact metrics returned. This is clearly distinct from siblings focused on individual repos (get_repo, search_repos) or mutation (update_catalog).

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 description implies when to use the tool — for local, offline catalog coverage checks — and the 'Never contacts the network' line suggests a lightweight read. However, it never explicitly names alternatives or states when not to use it, leaving some inference to the agent.

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