Skip to main content
Glama
chrischall

musicbrainz-mcp

by chrischall

Server Quality Checklist

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

  • Disambiguation5/5

    Each tool has a clearly distinct purpose: browse lists linked entities, lookup fetches by MBID, search performs queries, cover art retrieves images, healthcheck checks connectivity, resolve converts URLs, and three write tools handle collections, ratings, and tags. No overlap in functionality.

    Naming Consistency5/5

    All tools consistently use the 'musicbrainz_' prefix followed by a snake_case verb_noun pattern (e.g., musicbrainz_lookup, musicbrainz_submit_tags), making the naming predictable and easy to parse.

    Tool Count5/5

    Nine tools cover the essential operations for interacting with the MusicBrainz API without being excessive. Each tool serves a specific purpose, and the count is well-scoped for the domain.

    Completeness5/5

    The tool set covers both read operations (lookup, search, browse, cover art, resolve, healthcheck) and write operations (modify collection, submit rating, submit tags), providing a complete surface for querying and managing personal MusicBrainz data.

  • Average 4.4/5 across 9 of 9 tools scored.

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

    • 1 of 1 community issues answered or closed in the last 6 months
    • 55 commits in the last 12 weeks
    • Last stable release on
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI is passing
  • This repository is licensed under MIT License.

  • 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

  • Behavior4/5

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

    Annotations already declare read-only, open-world, and idempotent hints. The description adds value by detailing the output structure (three fields with plain-English hint) and the method (looking up a stable entity), which confirms idempotent behavior. No contradictions with 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 extremely concise, with two sentences that are front-loaded and contain no filler. Every sentence serves a purpose: first states the core action, second describes the output format and confirms read-only nature.

    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 no parameters, no output schema, and comprehensive annotations, the description is nearly complete. It explains the tool's purpose, output, and safety. It could mention that it is appropriate as a first call to verify connectivity, but this is not critical.

    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 no parameters, so schema coverage is trivially 100%. The description does not need to add parameter details. According to guidelines, zero parameters yields a baseline score of 4.

    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: to confirm MusicBrainz API reachability and OAuth configuration. It uses a specific verb ('Confirm') and resource ('MusicBrainz API connectivity'), and distinguishes itself from sibling data operations like browsing, searching, or modifying.

    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 usage for checking connectivity and OAuth config, but does not explicitly state when to use this tool versus alternatives or when not to use it. There is no guidance on prerequisites or ordering relative to other tools.

    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?

    Annotations already declare readOnlyHint, openWorldHint, and idempotentHint. The description adds 'Read-only' and credits MusicBrainz data source, reinforcing the annotations but not adding new behavioral details like rate limits or auth.

    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-loading the main purpose and adding usage tip with attribution. Every sentence earns its place, no redundancy.

    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 good annotations, the description covers URL format, `inc` parameter, and example. No output schema exists, but 'entity' implies a full object. Minor gap: no explicit mention of return format.

    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?

    Schema coverage is 100%. The description adds context: `url` can be a full URL or 'entity/mbid' path, and `inc` includes linked sub-entities. This goes beyond the schema's brief 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 it resolves a MusicBrainz URL to its entity by extracting type and MBID. It distinguishes from siblings like musicbrainz_lookup or musicbrainz_search by explicitly focusing on URL input.

    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 says 'Handy when a user pastes a MusicBrainz link,' providing clear context. It also mentions using `inc` for sub-entities. However, it does not explicitly contrast with alternative tools like musicbrainz_lookup for direct MBIDs.

    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?

    Beyond annotations (readOnlyHint, idempotentHint), description adds that it returns URLs not bytes, and provides error behavior for missing art. No contradictions.

    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?

    Three efficient sentences with key info front-loaded. No 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 two-parameter tool with no output schema, description fully covers purpose, return format, error handling, and read-only nature.

    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%, so baseline is 3. Description does not add significant parameter detail beyond the schema, but confirms entity enum and mbid format.

    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?

    Clear verb 'Fetch' and specific resource 'Cover Art Archive image metadata for a release or release-group MBID'. Distinguishes from sibling tools like musicbrainz_search or musicbrainz_lookup, which serve different purposes.

    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?

    States that it returns URLs not bytes, and errors when no art exists. Sibling tools are distinct, so usage context is clear, though no explicit 'when not to use' is given.

    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?

    Annotations already provide readOnlyHint, openWorldHint, and idempotentHint. The description adds context about the data source and read-only nature, and does not contradict annotations. It lacks detail on rate limits or response structure, but is sufficient given the annotation coverage.

    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 concise sentences, front-loaded with purpose, no redundant information. Every sentence adds value, making it highly efficient.

    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 lookup tool with full schema coverage and no output schema, the description covers entity types, MBID format, inc usage, and data source. It is complete enough for an agent to use correctly.

    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?

    Schema coverage is 100%. The description adds value by providing example `inc` values per entity type and explaining the purpose of the parameter, going beyond the schema's basic type/pattern 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 fetches a single MusicBrainz entity by MBID, lists all entity types, and distinguishes from siblings like search and browse by specifying 'single entity lookup'.

    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?

    Provides explicit guidance on using `inc` for sub-entities with examples, and declares read-only status. However, it does not explicitly exclude use cases or mention alternatives, but the sibling context and description imply appropriate usage.

    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?

    Discloses authentication needs (OAuth with collection scope), dry-run behavior without confirm, and that no network call is made until confirmed. Aligns with annotations (readOnlyHint=false, idempotentHint=true). Does not mention rate limits or error responses, but overall adequate.

    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?

    Concise, well-structured: front-loaded with purpose, followed by prerequisites and key behavior details. Every sentence is informative with no redundancy.

    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 no output schema, the description covers the dry-run preview and the need for confirm, but does not specify what the output looks like after mutation (e.g., success confirmation). Still sufficiently complete for a straightforward mutation tool with annotations providing idempotency and non-read-only hints.

    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?

    Schema coverage is 100%, so the description adds value by explaining how to obtain the collection MBID and the function of confirm. The entity type and action enums are clear from the schema, but the description provides practical usage context.

    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 specific verbs 'Add or remove' and explicitly states it modifies MusicBrainz collections. It lists all entity types and is clearly distinct from sibling tools like search, lookup, or browse.

    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 explains the prerequisite OAuth scope, how to get the collection MBID, and the dry-run mechanism with confirm. It implicitly distinguishes from siblings by its unique mutative purpose, but could explicitly state 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.

  • Behavior4/5

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

    Annotations already declare readOnlyHint, openWorldHint, idempotentHint. The description adds that the tool is 'Read-only' and that data comes from MusicBrainz. It also explains the query format and matching behavior, going beyond annotations. No contradictions.

    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 four sentences long, front-loaded with the core purpose, followed by examples and next-step guidance. Every sentence is informative and concise with no wasted words.

    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 that there is no output schema, the description hints at the output: 'ranked matches with their MBIDs.' All 4 parameters are well-documented. The tool is straightforward (search), so the description is mostly complete. Minor omission: no mention of pagination behavior beyond the offset/limit parameters.

    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?

    Schema coverage is 100% with descriptions for all 4 parameters. The description adds value by showing example queries and explaining that plain text matches the entity name. This enriches the parameter semantics beyond the schema's basic 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 'Search a MusicBrainz entity type with a Lucene query and get back ranked matches with their MBIDs.' It specifies the verb (search), resource (MusicBrainz entity types), and what is returned (ranked matches with MBIDs). This distinguishes it from siblings like musicbrainz_browse and musicbrainz_lookup.

    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 explains when to use this tool: for searching with Lucene queries. It provides examples of plain text and fielded queries. It also tells the next step: 'Feed a returned MBID into musicbrainz_lookup for full detail.' However, it does not explicitly state when not to use or compare to alternatives like musicbrainz_browse.

    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?

    Annotations already declare readOnlyHint, openWorldHint, idempotentHint. The description adds value by explaining it returns a complete paged set (not fuzzy), and mentions the data source (MusicBrainz) and pagination constraints. No contradictions.

    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?

    Three efficient sentences: one long sentence with purpose and examples, then two short sentences contrasting with search and providing pagination guidance. Every sentence is necessary and well-placed.

    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?

    No output schema, but the description covers purpose, parameter usage, pagination, and read-only nature. It does not describe the return format (e.g., list of entities with IDs/names), which is a minor gap given the tool's simplicity and high schema coverage.

    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?

    Schema description coverage is 100%. The description adds meaning beyond the schema by providing usage examples linking entity and linkedBy parameters (artist→release, release→recording, etc.) and explaining 'inc' for extra detail.

    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+resource ('List all entities of one type directly linked to a given entity') with concrete examples (e.g., 'every release by an artist'). It clearly distinguishes from the sibling tool 'musicbrainz_search' by contrasting fuzzy matching vs. complete paged sets.

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

    Usage Guidelines5/5

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

    Explicitly states when to use (to get the complete paged set of linked entities) and when to use an alternative ('unlike search, which ranks fuzzy matches'). Provides pagination details ('limit/offset to page, max 100/page') and hints about 'inc' for extra detail.

    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?

    The description adds significant behavioral context beyond annotations: OAuth scope, vote semantics, and the dry-run preview mechanism. Annotations indicate idempotent and non-read-only, which the description supports with the dry-run behavior.

    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, well-structured paragraph of 4 sentences. It front-loads the core action and then explains vote and confirm in order. No unnecessary words.

    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 tool has no output schema, so the description should cover return values. It explains the dry-run preview (XML) but does not describe what confirm: true returns. Otherwise, it covers authentication, parameters, and safety preview.

    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?

    All 5 parameters have schema descriptions (100% coverage). The description adds value by clarifying the default vote, the effect of confirm, and the dry-run return. It does not repeat schema details but enriches them.

    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 'Apply user tags to a MusicBrainz entity on YOUR account' with specific verb and resource. It distinguishes itself from the sibling tool musicbrainz_submit_rating by explicitly mentioning tags and vote direction. The title and name reinforce the 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 provides clear context for usage, including OAuth requirement and dry-run vs confirm behavior. However, it does not explicitly compare to siblings like musicbrainz_submit_rating, though the sibling names are listed in context.

    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?

    Discloses key behavioral traits beyond annotations: OAuth requirement, idempotent nature (setting same rating again is safe), and the dry-run preview feature. No contradiction with annotations (readOnlyHint=false, idempotentHint=true).

    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?

    Concise and well-structured. First sentence states purpose and OAuth requirement, second explains rating scale, third explains confirm behavior, last sentence attributes data source. No wasted words.

    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 complexity (4 params, write operation), the description covers prerequisites, parameter semantics, and submission flow. Could mention return format or error handling, but the dry-run preview addresses safety concerns.

    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?

    Schema coverage is 100%, so baseline is 3. The description adds meaningful context: rating scale mapping (0–100 to 1–5 stars) and explains that 0 removes the rating. This goes beyond the schema's description.

    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: 'Set YOUR rating for a MusicBrainz entity'. It specifies the verb, resource, and user scope, distinguishing it from sibling tools like 'musicbrainz_submit_tags' which handle tags.

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

    Usage Guidelines5/5

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

    Provides explicit prerequisites (OAuth with 'rating' scope) and explains the dry-run behavior: without confirm:true, it returns a preview with no network call; with confirm:true, it submits. This tells the agent when and how to use the tool safely.

    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

musicbrainz-mcp MCP server

Copy to your README.md:

Score Badge

musicbrainz-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/chrischall/musicbrainz-mcp'

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