THIRI Chord Intelligence
Server Details
Deterministic music theory for agents: analyze, voice, reharmonize, conduct — computed, not guessed
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- BluesPrince/thiri-mcp
- GitHub Stars
- 5
- Server Listing
- THIRI Chord Intelligence — Music Theory MCP Server
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
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.
Tool Definition Quality
Average 3.5/5 across 5 of 5 tools scored. Lowest: 2.9/5.
Most tools have clearly distinct purposes: analyze_chord provides theoretical analysis, resolve_chord gives practical note/frequency data, generate_voicing creates voicings, reharmonize modifies progressions, and conduct_band arranges a full band. The only potential confusion is between analyze_chord and resolve_chord, but their different output types mitigate ambiguity.
Tool names follow a consistent verb_noun pattern (analyze_chord, conduct_band, generate_voicing, resolve_chord), with reharmonize being a single verb but still matching the imperative style. No mixed conventions or unpredictable casing.
Five tools is well-scoped for a chord intelligence server, covering analysis, resolution, voicing, reharmonization, and band arrangement without unnecessary bloat. Each tool appears essential to the domain.
The tool surface covers the core chord lifecycle: parse/analyze, resolve to playable data, generate voicings, reharmonize progressions, and create a full arrangement. Minor gaps exist, such as no explicit chord transposition or inversion utility, but these can be worked around via the existing tools.
Available Tools
5 toolsanalyze_chordARead-onlyIdempotentInspect
Parse a chord into root, quality, intervals, and (with a key) roman numeral + function.
| Name | Required | Description | Default |
|---|---|---|---|
| key | No | ||
| chord | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint, aligning with the non-destructive parse operation. The description adds value by stating the optional key parameter and the specific output components, but does not cover error handling or input constraints beyond that.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that efficiently communicates the tool's action and outputs. Every word earns its place with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the main outputs but lacks specifics on return format, accepted chord syntax, and prerequisites. Given the complexity of chord parsing and the absence of an output schema, more detail is needed for completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must compensate. It mentions 'chord' and 'key' but provides no details on formats, examples, or types. The description adds minimal meaning beyond what the schema already provides (string types).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'parse' and the resource 'chord', listing the output components (root, quality, intervals, roman numeral, function). It distinguishes from siblings like generate_voicing and reharmonize, which are generative rather than analytical.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for chord analysis but does not explicitly contrast with siblings or provide conditions for when to use this tool versus others. The mention of 'with a key' hints at an optional condition but lacks definitive guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
conduct_bandARead-onlyInspect
Arrange a 4-piece band from a natural-language prompt. Returns conductor tempo/groove, 4 lanes of note events, lead sheet, and base64 MIDI. Audio render (Csound → WAV) stays on local thiri-conductor-mcp / POST /v2/render.
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes | ||
| durationSec | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already set readOnlyHint=true and destructiveHint=false, so the agent knows it is a safe read/generation operation. The description adds meaningful behavioral context by noting that audio rendering remains on a local endpoint (thiri-conductor-mcp / POST /v2/render), implying the tool returns data but does not perform the actual audio synthesis internally. This adds value beyond the annotations without contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact, two sentences long, and front-loads the core purpose and return outputs. The second sentence adds a precise implementation detail about the external rendering endpoint, which is valuable for an agent to understand dependencies. There is no fluff or redundancy, making it highly efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has 2 parameters, no output schema, and no per-parameter descriptions. The description covers the main purpose, the return payload (tempo/groove, 4 lanes, lead sheet, base64 MIDI), and the external render behavior. However, it lacks explicit definition of how 'durationSec' behaves or how the output is structured, which would improve completeness. Given the annotation coverage and the straightforward nature of the parameters, this is sufficient but not exhaustive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has zero description coverage for parameters. The description gives partial meaning to 'prompt' by calling it a 'natural-language prompt', but it does not explain the optional 'durationSec' parameter at all. Since there are only two parameters, this substantial gap in parameter documentation is poorly compensated for by the description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Arrange a 4-piece band from a natural-language prompt.' This uses a specific verb ('Arrange'), a specific resource ('a 4-piece band'), and outlines the return payload (tempo/groove, note lanes, lead sheet, base64 MIDI). It effectively distinguishes itself from the sibling chord-generation tools by focusing on full-band arrangement rather than chord analysis or voicing.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for creating a band arrangement from natural-language prompts, but does not explicitly indicate when to prefer this over alternatives or provide any exclusion criteria. The sibling context (chord-focused tools) helps suggest differentiation, but the description itself lacks explicit usage guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_voicingCRead-onlyIdempotentInspect
Instrument-ready voicing in a style; pass previousNotes for a voice-leading score.
| Name | Required | Description | Default |
|---|---|---|---|
| chord | Yes | ||
| style | No | ||
| octave | No | ||
| keyContext | No | ||
| previousNotes | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. Description adds 'instrument-ready' and 'voice-leading score' context, but does not elaborate on other behavioral traits (e.g., output format, auth needs). No contradiction 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, concise sentence that front-loads the core purpose. Every word adds value with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite low complexity (no output schema, no nested objects), the description fails to specify what the tool returns, how parameters interact, or what 'instrument-ready' means. Incomplete for effective agent usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% for 5 parameters. Description only mentions previousNotes in passing. No explanation of chord format, style values, octave range, or keyContext meaning, leaving the agent to guess.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it generates an 'instrument-ready voicing' and mentions style and previousNotes. However, it does not explicitly differentiate from sibling tools like reharmonize or resolve_chord, though the purpose is distinct.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Only implicitly suggests using previousNotes for voice-leading. No explicit instructions on when to use this tool versus alternatives (analyze_chord, reharmonize, resolve_chord), nor any context about prerequisites or typical scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
reharmonizeBRead-onlyIdempotentInspect
Reharmonize a progression. Techniques: tritone_sub, ii_v_insertion, modal_interchange, diminished_passing, secondary_dominant, chain_of_dominants, coltrane_changes, backdoor (or auto).
| Name | Required | Description | Default |
|---|---|---|---|
| key | No | ||
| technique | No | ||
| progression | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint, indicating a safe read operation. The description adds value by enumerating specific reharmonization techniques (tritone_sub, ii_v_insertion, etc.), informing the agent about the transformations applied. No contradiction 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence followed by a colon-separated list, which is concise and front-loaded. It packs essential information efficiently, though a more structured format could improve readability.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the three parameters, no output schema, and the need to understand input/output formats, the description is insufficient. It omits what the tool returns, how to format the progression, and the role of the key parameter.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has zero description coverage for the three parameters. The description partially compensates by listing possible values for 'technique', but does not explain 'key' or the format of 'progression' items, leaving significant ambiguity.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Reharmonize' and identifies the resource as 'a progression'. It explicitly lists reharmonization techniques, clearly distinguishing it from sibling tools (analyze_chord, generate_voicing, resolve_chord) which focus on different aspects.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use or avoid this tool compared to siblings. The list of techniques implies some context but fails to provide when-to-use or when-not-to-use criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
resolve_chordARead-onlyIdempotentInspect
Resolve a chord to spelled notes, frequencies, MIDI, and recommended scales.
| Name | Required | Description | Default |
|---|---|---|---|
| chord | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, destructiveHint=false, idempotentHint=true, indicating a safe, read-only operation. The description adds value by specifying what the tool returns (notes, frequencies, MIDI, scales), which is beyond the 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that efficiently conveys the tool's purpose. It is easy to read, though it could be slightly more structured for clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of chord resolution (music theory), the description lacks key context: no output schema, no parameter format guidance, and no examples. The single sentence is insufficient for an agent to use the tool correctly without prior knowledge of chord notation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There is one required parameter 'chord' of type string, with 0% schema description coverage. The description does not explain the expected format (e.g., 'C major', 'Cmaj7', or a chord symbol syntax). This omission leaves agents uncertain how to specify the chord, reducing usability.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'resolve' and the resource 'chord', and lists specific outputs (spelled notes, frequencies, MIDI, scales). This distinguishes it from siblings like analyze_chord (likely analysis without such outputs) and generate_voicing/reharmonize (which produce different results).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies using this tool to get detailed chord information, but does not explicitly state when to use it versus alternatives like analyze_chord, nor does it provide exclusions or prerequisites. The guidance is implicit rather than directive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityBmaintenanceProvides atomic music-theory and MIDI tools for composing, enabling LLMs to chain deterministic steps like scale/chord lookups, degree resolution, rhythm generation, and MIDI rendering.131MIT
- Alicense-qualityDmaintenanceA composition-focused server built on music21 for generative music workflows, enabling melody generation, musical transformations, chord reharmonization, counterpoint creation, and MIDI export through constraint-based algorithmic composition tools.1MIT
- Apache 2.0
Your Connectors
Sign in to create a connector for this server.