MCP server that gives Claude the ability to hear music. Pure Rust audio analysis — spectral, harmonic, rhythm, timbre — returned as structured data.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"audio-analyzer-rs": {
"command": "cargo",
"args": [
"run",
"--",
"audio-analyzer-rs"
]
}
}
}
Run in terminal:
claude mcp add audio-analyzer-rs cargo run -- audio-analyzer-rs
Add to .cursor/mcp.json:
{
"mcpServers": {
"audio-analyzer-rs": {
"command": "cargo",
"args": [
"run",
"--",
"audio-analyzer-rs"
]
}
}
}