THIRI Chord Intelligence
Server Details
Chord intelligence for agents: analyze, voice, reharmonize, and resolve chords.
- 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.
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.4/5 across 4 of 4 tools scored.
Each tool targets a distinct aspect of chord manipulation: analysis, voicing generation, reharmonization, and resolution. There is no functional overlap.
Three tools follow a clear verb_noun pattern (analyze_chord, generate_voicing, resolve_chord), but 'reharmonize' uses only a verb, slightly breaking the pattern.
Four tools is an appropriate number for a focused chord intelligence server, covering core operations without being bloated.
The tool set covers the main lifecycle of chords (analysis, voicing, reharmonization, resolution), but lacks operations like chord inversion or arpeggio generation, which are minor gaps.
Available Tools
4 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.
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!