AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Mtl Metadata Mcp

mcp-musictechlab-mtl-metadata-mcp · by musictechlab

MCP server for reading and embedding metadata in audio files (MP3, FLAC, OGG)

No reviews yet
0 installs
21 views
0.0% view→install

Install

$ agentstack add mcp-musictechlab-mtl-metadata-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-musictechlab-mtl-metadata-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Mtl Metadata Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

mtl-metadata-mcp

[](LICENSE) [](https://github.com/musictechlab/mtl-metadata-mcp/actions/workflows/ci.yml) [](https://musictechlab.io)

MCP server for reading and embedding metadata in audio files (MP3, FLAC, OGG). Built for Claude Code.

> ⚠️ Experimental — This project is in early development. Use at your own risk. We make no guarantees about stability or correctness and accept no responsibility for data loss or corrupted files. Always back up your audio files before modifying metadata.

Tools

| Tool | Description | |------|-------------| | metadata_read | Read metadata tags and file info from an audio file | | metadata_write | Embed metadata (title, artist, album, date, genre, ISRC) into an audio file | | metadata_clear | Remove all metadata tags from an audio file | | metadata_scan | Scan a directory for audio files and report metadata status |

Supported fields

| Field | Description | Example | |-------|-------------|---------| | Title | Track name | "Back in Black" | | Artist | Performer | "AC/DC" | | Album | Album name | "Back in Black" | | Date | Release year | "1980" | | Genre | Music genre | "Classic Rock" | | ISRC | International Standard Recording Code | "US-S1Z-99-00001" |

Supported formats

  • MP3 (ID3v2 tags)
  • FLAC (Vorbis comments)
  • OGG (Vorbis comments)

Setup

git clone https://github.com/musictechlab/mtl-metadata-mcp.git
cd mtl-metadata-mcp
poetry install

Claude Code configuration

claude mcp add -s user mtl-metadata -- bash -c "cd /path/to/mtl-metadata-mcp && poetry run python -m mtl_metadata_mcp"

Usage examples

Once configured, just ask Claude Code in natural language:

Reading metadata

> "What metadata does track.mp3 have?"

{
  "file": "/Users/you/Music/track.mp3",
  "format": "mp3",
  "duration_seconds": 234.56,
  "bitrate_kbps": 320,
  "sample_rate_hz": 44100,
  "channels": 2,
  "metadata": {
    "title": "Back in Black",
    "artist": "AC/DC",
    "genre": "Classic Rock"
  }
}

Embedding metadata

> "Set the artist to AC/DC, album to Back in Black, date to 1980, and ISRC to USAB12345678 on track.mp3"

Only the fields you mention are updated — everything else stays untouched.

Scanning a music library

> "Scan my ~/Music/demos folder and tell me which tracks are missing metadata"

{
  "directory": "/Users/you/Music/demos",
  "total_files": 3,
  "files": [
    {
      "file": "/Users/you/Music/demos/idea-01.mp3",
      "format": "mp3",
      "has_metadata": true,
      "fields_present": ["title", "artist"],
      "fields_missing": ["album", "date", "genre", "isrc"]
    },
    {
      "file": "/Users/you/Music/demos/sketch.flac",
      "format": "flac",
      "has_metadata": false,
      "fields_present": [],
      "fields_missing": ["title", "artist", "album", "date", "genre", "isrc"]
    }
  ]
}

Clearing metadata

> "Strip all tags from track.mp3"

Removes all ID3/Vorbis tags. Audio data is preserved.

Batch workflows

You can combine tools in conversation:

> "Scan ~/Music/album for files missing ISRC codes, then set ISRC to USAB12300001 through USAB12300010 on each track in order"

Tech stack

  • Python 3.10+
  • mutagen — audio metadata parsing and writing
  • MCP SDK — Model Context Protocol server framework
  • Poetry — dependency management

Contributing

Contributions are welcome! Please read [CONTRIBUTING.md](CONTRIBUTING.md) before submitting a PR.

Security

To report a vulnerability, please see [SECURITY.md](SECURITY.md).

License

This project is licensed under the MIT License — see [LICENSE](LICENSE) for details.


MusicTech Lab - Rockstars Developers dedicated to the Music Industry Website | LinkedIn | Let's talk Crafted by musictechlab.io

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.