THIRI Chord Intelligence — Music Theory MCP Server
Server Details
Deterministic Music Theory for Claude, Cursor, and Autonomous AI Agents
Large Language Models (LLMs) frequently hallucinate music theory, leading to incorrect notes, false Roman numerals, and broken voice leading. THIRI solves this by providing a deterministic, mathematical music-theory engine (pitch-class-set theory over ℤ/12) directly to your AI.
It gives AI assistants precise, reproducible harmonic reasoning in milliseconds, allowing them to write correct musical scores, analyze progression
- 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.2/5 across 4 of 4 tools scored.
Each tool serves a distinct purpose: parsing a chord, generating a voicing, reharmonizing a progression, and resolving a chord to notes/scales. No functional overlap.
Three tools follow verb_noun (analyze_chord, generate_voicing, resolve_chord) while reharmonize is a bare verb. Minor inconsistency but still clear.
4 tools is ideal for a focused music theory server. Each tool covers a core operation without redundancy or missing essentials.
Covers analysis, voicing, reharmonization, and resolution. Could add scale/chord detection from audio, but for chord theory the surface is solid.
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, idempotentHint, and destructiveHint, establishing a safe, non-destructive operation. The description adds behavioral context: it parses into components, and notes that roman numeral and function are only provided when a key is supplied. This goes beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, 16 words, clearly front-loaded. Every word adds value; no redundancy or fluff. Concise yet informative.
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 lacking output schema, the description enumerates output components (root, quality, intervals, roman numeral, function). This is sufficient for a simple analysis tool. However, additional context about input chord format could enhance completeness. Overall, good coverage given the tool's scope.
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 0% description coverage, so the description must compensate. It clarifies that 'key' is optional and affects output (roman numeral/function). However, it does not specify expected input format for the chord string (e.g., notation like 'Cmaj7'), leaving some 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?
Description specifies the verb 'parse', the resource 'chord', and explicitly lists the outputs (root, quality, intervals, roman numeral, function). This clearly defines the tool's purpose and distinguishes it from siblings like generate_voicing or reharmonize.
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 when chord analysis is needed, but does not explicitly state when to use versus alternatives. No 'when not to use' guidance or mention of sibling tools. The context of sibling names provides some differentiation, but the description itself lacks explicit guidelines.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_voicingBRead-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, and destructiveHint=false, so the description does not need to repeat safety traits. The description adds behavioral context by mentioning 'voice-leading score', indicating that previousNotes influences the output. However, it does not disclose any other behavioral traits such as authentication needs or rate limits.
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 with no redundant words. It conveys the core purpose and a key parameter usage efficiently.
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 tool has 5 parameters and no output schema, the description is insufficient. It fails to explain multiple parameters (style, octave, keyContext) and the nature of the return value. The description leaves significant gaps for an agent to correctly invoke the tool.
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%, so the description must compensate. Only 'previousNotes' is explained (for voice-leading), leaving four other parameters (chord, style, octave, keyContext) completely undefined. The description adds little value beyond the parameter names.
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 states it generates an 'instrument-ready voicing in a style', clearly indicating the tool's function. It also mentions using previousNotes for voice-leading, which distinguishes it from siblings like analyze_chord or reharmonize. However, it could be more explicit that the output is a voicing (a set of notes) and not a chord symbol.
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 this tool versus its siblings (analyze_chord, reharmonize, resolve_chord). The only usage hint is 'pass previousNotes for a voice-leading score', which implies a conditional use but does not specify when not to use or what scenarios are appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
reharmonizeCRead-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 indicate readOnlyHint and idempotentHint, but the description says 'Reharmonize' which typically implies mutation. There is no clarification on whether the tool modifies the input or returns a new progression. This creates ambiguity about actual behavior.
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 very concise with a single sentence and a list of techniques. All information is relevant and front-loaded.
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 tool has 3 parameters and no output schema, the description is insufficient. It lacks details on input format, return value, and behavioral side effects, relying too much on annotations which are partly contradictory.
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 covers 0% of parameters in description. The techniques list adds meaning to the 'technique' param beyond the schema, but the 'progression' format and 'key' usage are not explained. The description does not compensate for low schema coverage.
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 reharmonizes a progression and lists specific techniques. It distinguishes from siblings like analyze_chord and generate_voicing by focusing on reharmonization.
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 this tool versus alternatives. The techniques list suggests use cases but no when-not scenarios or context for choosing a technique.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
resolve_chordCRead-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, idempotentHint, and destructiveHint. The description adds the output types but does not elaborate on error handling, input validation, or other behavioral traits beyond what annotations provide.
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?
Single sentence, no filler, front-loaded with key information. Every word earns its place.
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 and the absence of output schema, the description is too sparse. It omits input format, output structure details, and limitations, which are essential for correct tool invocation.
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?
With 0% schema description coverage, the description must compensate. It only mentions 'a chord' without specifying the expected format (e.g., 'C major', 'Cmaj7'). No details on how the string should be structured, leaving the agent without critical input guidance.
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 resolves a chord to specific outputs (spelled notes, frequencies, MIDI, scales). It uses a specific verb 'resolve' and resource 'chord', but does not explicitly differentiate from sibling tools like analyze_chord, which may have overlapping functionality.
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 guidance on when to use this tool vs alternatives such as analyze_chord or generate_voicing. It does not provide context for appropriate usage or exclusions.
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!