Skip to main content
Glama

Server Details

GitHub repo analytics: stars, trending, code search, contributor maps for project research.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.3/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation4/5

Each tool has a clear primary purpose: search, single-repo stats, language breakdown, and multi-repo comparison. The only potential confusion is between get_repo_stats and compare_repos, as both return metrics, but the singular/comparative distinction is clear from names and descriptions.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (compare, get, get, search). The pattern is predictable and matches the GitHub domain.

Tool Count4/5

With 4 tools, the server is slightly on the smaller side but appropriately scoped for repository analysis. It does not feel bloated or excessively thin for the apparent purpose.

Completeness3/5

The toolset covers search, stats, language, and comparison, but lacks basic repository metadata retrieval (e.g., description, topics, README) and contributor/commit details. These gaps may require workarounds, but core analysis workflows are covered.

Available Tools

4 tools
compare_reposA
Read-only
Inspect

Compare multiple GitHub repositories side-by-side with key metrics. Returns star counts, fork counts, issues, primary language, and comparative analysis for each repository. Use for choosing between similar projects or analyzing competitive landscape.

ParametersJSON Schema
NameRequiredDescriptionDefault
reposYesList of repositories to compare (minimum 2)
Behavior4/5

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

The annotations already declare readOnlyHint=true and openWorldHint=true, covering the safety profile. The description adds useful behavioral detail by specifying the exact metrics returned and the side-by-side comparison format, which goes beyond the annotations. It does not disclose potential rate limits or output structure, but the substantial added context warrants a score above baseline.

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 with no wasted words. The first sentence front-loads the purpose and output, while the second provides actionable usage guidance. Every sentence earns its place, making it an ideal concise description.

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?

Given the simple single-parameter schema, strong read-only annotations, and no output schema, the description is complete enough. It covers what the tool does, what it returns, and when to use it, leaving no significant gaps for an AI agent to select and invoke the tool correctly.

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 the 'repos' parameter is well documented in the schema with format examples and minimum count. The description adds minimal extra meaning, only reinforcing that the input is a list of GitHub repositories. Baseline 3 is appropriate since the schema already carries the semantic weight.

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 uses a specific verb ('Compare') with a clear resource ('multiple GitHub repositories') and lists the key metrics returned (stars, forks, issues, language, comparative analysis). It clearly distinguishes this tool from sibling tools like get_repo_stats (single-repo stats) and search_repos (search), establishing a unique comparison-focused purpose.

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 explicitly states when to use the tool: 'Use for choosing between similar projects or analyzing competitive landscape.' This provides clear usage context, though it does not explicitly mention when not to use it or name alternatives. The sibling tool names imply alternatives, but the lack of direct exclusion prevents a full 5.

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

get_repo_languagesA
Read-only
Inspect

Analyze the programming language composition of a GitHub repository. Returns percentage breakdown of languages used, dominant language, and file counts per language. Use for understanding project tech stack or evaluating language distribution.

ParametersJSON Schema
NameRequiredDescriptionDefault
repoYesRepository name (e.g. 'cpython', 'go')
ownerYesRepository owner GitHub username or organization (e.g. 'python', 'golang')
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, establishing this as a safe, read-only operation. The description adds valuable context by detailing the return values (percentage breakdown, dominant language, file counts), which is essential since no output schema is provided. It does not contradict annotations.

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 compact and efficient: two sentences that convey purpose, output details, and usage context with no redundancy or unnecessary words.

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 simple read-only tool with two parameters and no output schema, the description fully explains what it does and what it returns. It covers the essential context for an agent to select and invoke the tool correctly, and it differentiates from sibling tools.

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 input schema has 100% coverage with clear descriptions and examples for both parameters (owner and repo). The description does not add additional parameter-level detail, but with high schema coverage, baseline 3 is appropriate.

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's purpose: 'Analyze the programming language composition of a GitHub repository.' It specifies the exact output (percentage breakdown, dominant language, file counts) and is easily distinguished from siblings like get_repo_stats or search_repos, which focus on general stats or searching.

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 explicitly states when to use the tool: 'Use for understanding project tech stack or evaluating language distribution.' It does not provide explicit alternatives or when-not-to-use guidance, but the use case is clear and context is sufficient for a focused tool.

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

get_repo_statsA
Read-only
Inspect

Fetch comprehensive statistics for a specific GitHub repository. Returns total stars, forks, issues (open/closed), pull requests, watchers, last commit date, and contributor count. Returns metrics useful for assessing project popularity and maintenance status.

ParametersJSON Schema
NameRequiredDescriptionDefault
repoYesRepository name within the owner (e.g. 'linux', 'vscode', 'gpt-2')
ownerYesGitHub username or organization name (e.g. 'torvalds', 'microsoft', 'openai')
Behavior4/5

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

The annotations already declare readOnlyHint=true, so the description doesn't need to state safety. It adds value by enumerating the specific metrics returned (stars, forks, issues, etc.) and the purpose, which goes beyond the annotations. There is no contradiction.

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 action and resource. The second sentence efficiently lists return metrics and use case. No redundant words or repetition of schema information.

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 simple 2-parameter tool with no output schema, the description is complete: it explains what the tool does, what data it returns, and its intended use. The schema and annotations cover the remaining context (parameters and safety).

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%, with owner and repo fully documented in the input schema. The description adds no additional parameter semantics beyond the schema, such as format or special behavior, so the baseline of 3 is appropriate.

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 'Fetches comprehensive statistics for a specific GitHub repository', specifying the verb and resource. It distinguishes from siblings by focusing on individual repo stats, whereas compare_repos compares, get_repo_languages handles languages, and search_repos searches.

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: use when you need stats for a specific repo, and it mentions usefulness for assessing popularity and maintenance. However, it doesn't explicitly mention when not to use it or alternatives, though sibling names imply differentiation.

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

search_reposA
Read-only
Inspect

Search across GitHub for repositories matching keywords, sorted by relevance or metrics. Returns matching repositories with description, star count, language, and last update timestamp. Use for finding projects, libraries, or code samples related to specific topics.

ParametersJSON Schema
NameRequiredDescriptionDefault
sortNoSort results by most stars, most forked, or most recently updated (default: relevance)
queryYesSearch terms to find repositories (e.g. 'todo app', 'machine learning framework', 'authentication middleware')
max_resultsNoNumber of repositories to return (default 10, max 100 for comprehensive search)
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, so the description is not required to explain safety. It adds value by describing the return contents (description, star count, language, last update timestamp) and the sorting behavior (relevance or metrics), which is behavioral context beyond the annotations.

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 compact and front-loaded, with the core action stated in the first phrase. It avoids redundancy and uses only two sentences to convey purpose, behavior, and use case, earning its place entirely.

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?

Given the tool's moderate complexity, the description provides sufficient context: it states the input (keywords), optional sort behavior, and the output fields. There is no output schema, so the description appropriately covers return values. It does not discuss pagination or limits beyond the schema, but the schema already documents max_results.

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 coverage is 100%, with parameter descriptions already explaining query, sort, and max_results. The description only reinforces the concept of 'keywords' and 'metrics' without adding new parameter-level details, so it meets the baseline but does not exceed it.

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 uses a specific verb ('Search') and resource ('GitHub repositories') and clearly communicates the scope: finding repos by keywords, sorted by relevance or metrics. It distinguishes itself from sibling tools like compare_repos and get_repo_stats by focusing on discovery rather than analysis.

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 explicitly states when to use the tool ('Use for finding projects, libraries, or code samples related to specific topics'), giving clear context. It does not mention alternatives or exclusions, but the use case is sufficiently distinct from the sibling tools.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources