Skip to main content
Glama

get_repo_stats

Retrieve Gitee repository statistics including stars, forks, watchers, and open issues by owner and repo to assess project popularity and activity.

Instructions

获取 Gitee 仓库统计:star/fork/watch 数、开放 issue 数

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
repoYes仓库名,如 social-media-bot-cn-generic
ownerYes仓库所有者,如 jokerbhind

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It implies a read-only aggregation but says nothing about authentication requirements, rate limits, caching/staleness of the counts, or whether private repos are supported — all relevant for a stats endpoint.

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

Conciseness4/5

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

A single compact sentence that front-loads the action and then lists the returned metrics. No filler, though it trades brevity for leaving behavior and usage unspecified.

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 two-parameter read tool with full schema coverage, the description is largely sufficient, and it usefully enumerates the returned metrics given no output schema exists. It lacks any note on auth or freshness, which is a minor gap.

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% and both parameters (owner, repo) are documented with examples in the schema, so the baseline is 3. The description adds no syntax or format detail beyond what the schema already provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource (获取 Gitee 仓库统计) and enumerates what is aggregated: star/fork/watch counts and open issue count. This distinguishes it from siblings like list_stargazers and list_issues, which enumerate individual items rather than return counts, though the differentiation is implicit rather than stated.

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

Usage Guidelines2/5

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

There is no statement of when to use this tool versus list_stargazers or list_issues, and no prerequisites (e.g., whether the repo must be public or whether auth is required). Usage is only implied by the fact that it returns counts.

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