Mmcp.market

Cochlea MCP server

by richer-richard·io.github.richer-richard/cochlea-mcp·v0.7.0

Render, analyze, and verify audio (WAV/FLAC/mp3/ogg) offline and deterministically via MCP tools.

A88/100grade A
What users say
No reviews yet
Be the first
Safety scan
A88/100

full report

Adoption
Growing

14 stars

Reviews

Write one

Nobody has reviewed Cochlea yet.

If you have run it, two minutes of your experience saves the next person an afternoon.

Cochlea tools

No tool declarations could be read from the package source. They show once the server is installed.

Public scan report

scanner v0.1.9 · 2026-09-23 · same rubric, same numbers if you re-run it

no findings
  • Code scanpackage could not be scannedn/a
  • Live reliabilityno gateway calls yet and no remote to proben/a
  • Tool poisoningtools not inspected (local package is not executed); not countedn/a
  • Auth qualitylocal package, no credentials required12/15
  • Maintenancelast push 5 days ago15/15
  • Maintainer identityregistry namespace matches repository owner; GitHub account older than a year8/10
Overall 88/100. Components that don't apply are left out of the denominator. Any critical finding is an F.RubricAppeal a findingJSON

What the publisher says

From the Cochlea repository's README, as published. We do not edit it. Read it on GitHub

cochlea

A headless audio engine for agents. Write a score as data, render it offline to deterministic PCM, then listen through numbers — loudness, onsets, pitch, key, spectrograms — and assert what you heard. Compose → render → probe → verify, with no human ear (and no audio device) in the loop.

What the agent sees: the mel spectrogram of examples/scores/firstlight.ron — the score used in the example below — after render and probe. No PCM in sight.*

use cochlea_score::*;

let score = Score::new(SampleRate(48_000), Ppq(960))
    .time_signature(4, 4)
    .tempo(Ticks(0), Bpm(120.0))
    .track("lead", Instrument::preset("saw_lead"))
    .note("lead", bar(1).beat(1), Dur::quarter(), Pitch::A4, Vel(96))
    .automate("lead", Param::CUTOFF_HZ,
        keys![(bar(1), 400.0, ease_in_out()), (bar(3), 4_000.0)]);

let rendered = cochlea_render::render(&score)?;
rendered.write_wav("mix.wav")?;

use cochlea_verify::{VerifyExt, Tol, Ms, Cents, Db};
let report = rendered.verify(&score)
    .true_peak_below(-1.0)
    .pitch_matches_score("lead", Cents(10.0))
    .monotone("lead", Param::CUTOFF_HZ, bar(1)..bar(3))
    .silent_after(bar(5))
    .run();
assert!(report.passed);

Or entirely from the command line, score as RON:

cochlea render score.ron --out mix.wav --stems stems/ --verify
cochlea probe input.wav --json report.json --spectro spec.png
cochlea probe input.wav --digest --window-ms 500
cochlea probe input.mp3 --from 42.0 --to 44.5      # zoom into a window, any format
cochlea diff a.wav b.wav --tier2 --spectro delta.png
cochlea lint score.ron
cochlea spectro input.wav --out spec.png --annotate  # draw beats/onsets/pitch on the image
cochlea import song.mid --out score.ron              # SMF -> score, timing exact
cochlea transcribe solo.wav --out score.ron          # audio -> score, the inverse of render
cochlea reference    # the full score-authoring reference, generated from the live preset bank

cochlea probe works on any WAV, plus FLAC (decoded bit-exact), mp3, and ogg — still without ffmpeg, and with no score required. That's the front door: point it at audio you didn't render, and you get the same JSON report and spectrogram an agent uses to review its own work.

How an agent listens

compose → render → probe (JSON) → spectrogram (one vision call) → verify

key, silence, clipping) — cochlea probe mix.wav --json report.json. No image, no audio: the agent reads numbers.

  1. compose a score as data (RON, or the Rust builder above).
  2. render it to deterministic PCM — cochlea render score.ron --out mix.wav.
  3. probe the mix into a compact JSON report (loudness, onsets, pitch,

spec.png renders one small PNG the agent reviews in a single vision call instead of reasoning about raw samples.

  1. look, when numbers aren't enough — cochlea spectro mix.wav --out

embedded assertions and exits nonzero on failure. An agent can retry on its own, without a human confirming "yes, that sounds right."

  1. verify — cochlea render score.ron --verify runs the score's

Shortened. The full README is on GitHub.

Nothing above is checked by us. What we check is on the safety report.

Install directly

The registry entry has no remote endpoint or installable package.

Cochlea: common questions

Is Cochlea MCP server safe?
Yes, by our scan: it is graded A (88/100). Read the Cochlea safety report
Does Cochlea need an API key?
Not as far as the registry entry and our scan can tell: no credentials are declared or required.
Is Cochlea maintained?
The last commit was 5 days ago (2026-09-19). The latest release is v0.7.0.
What can I use instead of Cochlea?
Servers from other publishers that do the same job: Ffmpeg Render Pro MCP server, Ollos MCP server and Voicely MCP server. Compare all Cochlea alternatives.

Alternatives to Cochlea

Same job from other publishers: the closest match first, then the best rated.

All Cochlea alternatives →
  • Ffmpeg Render Pro
    Parallel video rendering tools: detect GPU encoders, render, color grade, merge audio, concat.
    A
  • Ollos
    Local, offline transcription, speakers, keyframes, on-screen text and review of any audio or video.
    A
  • Voicely
    Offline speech-to-text on macOS: transcribe audio/video files, read dictations and calls.
    A
  • NotebookLM MCP
    Automate Google NotebookLM — Q&A with citations, audio, video, content generation
    C
  • three.ws Audio
    Text-to-speech, speech-to-text, audio-to-face lipsync, and motion-capture clips for 3D agents.
    B

More from richer-richard