Skip to main content
Glama
vaggeliskls

release-notes-mcp

by vaggeliskls

Server Quality Checklist

58%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.1.0

  • Disambiguation5/5

    Each tool targets a distinct resource or action: repo discovery, release listing, latest version, specific release, range comparison, bulk gathering, and context loading. No two tools appear to serve the same purpose.

    Naming Consistency5/5

    All tool names follow a consistent snake_case verb_noun pattern: list_repos, list_releases, get_latest_version, get_release, compare_releases, gather_release_notes, get_context. Naming style is uniform and predictable.

    Tool Count5/5

    Seven tools is well within the ideal 3-15 range for a focused release-notes server. Each tool earns its place with a clear role in the workflow.

    Completeness5/5

    The tool surface covers the full release-notes lifecycle: discovering repositories, listing and filtering releases, drilling into specific versions, comparing ranges, bundling multiple notes, and pulling supplementary context. No obvious operational gap remains.

  • Average 4.1/5 across 7 of 7 tools scored. Lowest: 3.4/5.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 8 commits in the last 12 weeks
    • Last stable release on
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.

    If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.

    MCP servers without a LICENSE cannot be installed.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior2/5

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

    No annotations are provided, so the description carries full burden. It only says 'full release notes' but does not disclose error behavior, authentication requirements, or whether the operation might fail for missing tags. Lacks meaningful behavioral detail.

    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?

    Single sentence, front-loaded with the core purpose, no unnecessary words. Concise and readable.

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

    Completeness3/5

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

    The tool is simple and an output schema exists, so return values are covered. However, the description lacks usage guidance and behavioral transparency, making it only minimally complete for an agent to invoke reliably.

    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 has zero descriptions for parameters. The description adds only that 'repo' is a repository and 'tag' is a specific tag, which is minimally more than the parameter names themselves. No format, constraints, or examples are provided.

    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 states exactly what it does: retrieves full release notes for a specific tag in a repository. This clearly distinguishes it from sibling tools like list_releases or get_latest_version.

    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 the tool is for a specific tag, which gives some usage context, but it does not explicitly mention when to use it versus alternatives like list_releases or gathering multiple release notes.

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

  • Behavior3/5

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

    No annotations are provided, so the description carries the full burden. It states the core behavior (returns the latest published release) but does not disclose repo format expectations, error handling, or whether drafts/prereleases are excluded. Minimal disclosure beyond the obvious operation.

    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 concise sentence that earns its place by stating the tool's action, resource, and scope. No wasted words, though it could benefit from a bit more detail without becoming verbose.

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

    Completeness3/5

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

    An output schema exists, so return values are presumably defined there. The operation is simple with one parameter, but the description leaves a gap around the repo parameter's format. Overall adequate for a basic get tool but not fully complete.

    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?

    The schema has one parameter 'repo' with 0% description coverage, and the description only adds 'for one repo'. It does not clarify the expected format (e.g., 'owner/repo') or any constraints, leaving the parameter semantics largely undocumented.

    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 'Get' with a precise resource 'latest published release' and scope 'for one repo'. It clearly distinguishes from sibling tools like list_releases (all releases) and get_release (a specific release).

    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?

    Context implies the tool is for fetching the most recent release for a single repo, but it does not explicitly say when to use it over get_release or list_releases, nor does it mention alternatives. No exclusions or applicable scenarios are given.

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

  • Behavior3/5

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

    With no annotations, the description carries the full burden of behavioral disclosure. It states the operation is 'read', implying a safe, non-destructive action, but it does not explicitly confirm no side effects, nor does it describe behavior when no repositories are configured. Minimal but not misleading.

    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 a single, front-loaded sentence that directly states the action and subject. Every word contributes to the meaning, with no redundancy or filler.

    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, parameter-less tool with an output schema, the description captures the essential context: it lists repositories and provider. It could note that it reflects server configuration, but that is already implied. Overall, sufficient for the tool's complexity.

    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?

    The tool has zero parameters, and the schema has no properties. With no parameters to document, the baseline for parameter semantics is 4, and the description does not need to compensate for parameter coverage.

    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 'List' and identifies the resource ('repositories and provider'), clearly distinguishing this tool from siblings that focus on releases. The scope is explicit: it lists what the server is configured to read.

    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?

    The description offers no guidance on when to use this tool versus alternatives. It does not mention any other tools or exclusions, leaving the agent to infer from sibling names that this is for repo listing.

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

  • Behavior3/5

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

    With no annotations provided, the description carries the full burden. It discloses that it fetches all entries concurrently and that notes are 'raw' (not synthesized), which adds useful behavioral context. However, it does not address error handling, partial failures, or potential side effects (e.g., whether it is purely read-only). Given the fetch-like nature, more depth would improve transparency.

    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: it states the core purpose in the first sentence, follows with the parameter format, and ends with concurrency behavior. Every sentence earns its place, with no redundancy or filler.

    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 tool with one well-described parameter and an existing output schema, the description covers the essential aspects: what it does, how to specify selections, and a key behavioral trait (concurrency). It does not mention potential prerequisites or failure modes, but given the simplicity and output schema, it is adequately complete.

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

    Parameters5/5

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

    The input schema has no descriptions and uses a loose additionalProperties string, offering no semantic meaning. The description fully compensates by defining the exact structure: a list of {"repo": "owner/name", "tag": "v1.2.3"}. This is essential for correct invocation and goes well beyond the schema.

    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 'bundle' with a clear resource 'raw release notes' and states the purpose: to synthesize into a single product release. It distinguishes from sibling tools like get_release (single release) and list_releases by handling an explicit list of selections.

    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 clearly indicates when to use this tool: when you have an explicit list of repo/tag selections and want to combine their release notes. It does not explicitly name alternatives or state when not to use it, but the context is unambiguous enough for an agent to select it over siblings.

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

  • Behavior4/5

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

    Given no annotations, the description does well to disclose key behaviors: newest-first ordering, inclusive to_tag and exclusive from_tag, default omission of bodies, and the include_body flag to override. This covers the main behavioral traits an agent needs to know.

    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 sentences, with the main action front-loaded and a single additional note about the include_body parameter. No redundant words, and every clause adds value.

    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?

    The description is sufficient for an agent to invoke the tool effectively, especially since an output schema exists (so return structure needn't be described). It covers the range semantics, ordering, and body inclusion. Minor missing details like tag existence errors are not critical for selection/invocation.

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

    Parameters5/5

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

    Schema description coverage is 0%, so the description must explain all parameters. It does: repo identifies the repository, from_tag and to_tag define the range boundaries, and include_body controls whether note bodies are returned. This fully compensates for the missing schema descriptions.

    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 function: 'Return every release in `repo` published after `from_tag` up to and including `to_tag` (newest first)'. This specific verb+resource+scope distinguishes it from siblings like list_releases and get_release.

    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?

    It provides a clear use case ('useful when a service jumped several versions') and implies the tool is for comparing across a range of releases. It doesn't explicitly name alternatives or exclusion criteria, but the context is sufficient for an agent to select it.

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

  • Behavior4/5

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

    With no annotations, the description carries full burden and discloses key behaviors: it loads all sources by default, filters with a name, and auto-detects format. It does not mention error handling or side effects, but the load operation implies read-only behavior and the disclosed traits are valuable.

    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 three short, information-dense sentences with no redundancy. It fronts the purpose, then gives usage timing, then parameter behavior, with each sentence earning 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 simple tool with one optional parameter and an output schema, the description covers key aspects: what it loads, when to call it, how to filter, and format auto-detection. It could define 'supplementary context' more precisely, but the output schema handles return structure.

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

    Parameters5/5

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

    The schema has zero description coverage for the 'name' parameter, but the description compensates fully by explaining that no argument loads all sources and passing a name loads just one. This adds clear meaning beyond the bare schema definition.

    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 loads supplementary context from contextSources, using a specific verb and resource. It distinguishes itself from sibling tools by focusing on user-configured context sources rather than repository or release data.

    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 instructs to call this tool first when assembling release notes, providing a clear when-to-use directive. It also explains parameter usage with no argument vs passing a name, but does not explicitly mention alternatives or when not to use it.

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

  • Behavior5/5

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

    With no annotations provided, the description carries the full transparency burden and does so thoroughly. It discloses the default omission of release body, strict-after filtering semantics, the scan ceiling of 100 releases when filtering, and the interaction between limit and published_after. This goes well beyond the schema and provides meaningful behavioral expectations.

    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 information-dense but well-structured: a one-sentence summary followed by focused parameter behavior notes. Every sentence earns its place, and the most important facts are front-loaded. It is appropriately sized for a 4-parameter tool with non-obvious interactions.

    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 tool's moderate complexity and the presence of an output schema, the description covers the key contextual aspects: ordering, defaults, filtering semantics, and performance ceiling. It also ties the scan limit to a sibling tool (compare_releases), making the behavior easier to reason about. No significant gaps remain.

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

    Parameters5/5

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

    Schema coverage is 0%, so the description must compensate, and it does comprehensively. It explains the repo format, the purpose and conditions for include_body, the ISO-8601 format and strict-after behavior of published_after, and how limit caps results while the server scans up to 100 records. Every parameter is given semantic meaning beyond its raw type/default.

    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 opens with a specific verb and resource ('List recent releases for one repo (newest first)') and clarifies the repo format as 'owner/name'. This clearly distinguishes it from sibling tools like list_repos (which lists repos) and get_release (which likely targets a single release).

    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 gives concrete guidance on when to use optional parameters, e.g., 'pass include_body=True only when you need the notes text' and explains the behavior of published_after and limit. It references compare_releases for the scanning ceiling, but does not explicitly state when to choose this tool over get_release or get_latest_version, so it stops short of full alternative-based guidance.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

release-notes-mcp MCP server

Copy to your README.md:

Score Badge

release-notes-mcp MCP server

Copy to your README.md:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/vaggeliskls/release-notes-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server