mr-magic-mcp-server
v0.1.28
Published
Lyrics MCP server connecting LRCLIB, Genius, Musixmatch, and Melon
Downloads
1,979
Maintainers
Readme
Mr. Magic MCP Server
Mr. Magic bridges LRCLIB, Genius, Musixmatch, and Melon so MCP clients, JSON HTTP automations, and CLI aficionados can all request lyrics from a single toolchain.
Table of Contents
- Prerequisites
- Installation
- Environment Variables
- Provider Credentials
- Export and Download Configuration
- Local Deployment
- Remote Deployment
- HTTP Endpoints
- MCP Tools
- Airtable Integration
- MCP Client Configuration
- CLI
- Manual Testing
- Provider Notes
- Changelog
- License
Prerequisites
- Node.js 18.17 or newer
- npm 9+
- macOS / Linux / WSL
- Provider credentials (see Provider Credentials)
Installation
Quick start — npx (no clone required)
The easiest way to use Mr. Magic in an MCP client is via npx. No clone or local
install needed — the package is fetched from npm on first run and cached locally:
npx -y mr-magic-mcp-serverOr install globally so the binaries are always on PATH:
npm install -g mr-magic-mcp-serverWhen installed globally, start any server directly:
mcp-server # MCP stdio server (recommended for local MCP clients)
mcp-http-server # Streamable HTTP MCP server
http-server # JSON HTTP automation server
mrmagic-cli --help # CLILocal repo (development / contribution)
Clone or download the repository:
git clone https://github.com/mrnajiboy/mr-magic-mcp-server.git cd mr-magic-mcp-serverInstall dependencies:
npm installnpm installdoes not addmrmagic-clito your shellPATH. For local repo usage, run the CLI vianpm run cli -- ...ornode src/bin/cli.js .... Runnpm link(dev symlink) or install globally to getmrmagic-clionPATH.Configure
.env(see Environment Variables) or export env vars in your shell before running any commands.Run the desired entrypoint:
- MCP stdio server:
npm run server:mcp - MCP Streamable HTTP server:
npm run server:mcp:http - JSON HTTP automation server:
npm run server:http - CLI:
npm run cli -- --help
- MCP stdio server:
Environment Variables
Copy .env.example to .env (or inject via your platform dashboard). Variables are
grouped below by purpose.
Server and runtime
| Variable | Default | Description |
| -------------------------- | ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| PORT | 3444 / 3333 | Override server port. On Render this is set automatically (default 10000). |
| LOG_LEVEL | info | Verbosity: error | warn | info | debug. |
| MR_MAGIC_QUIET_STDIO | 0 | Set to 1 to suppress non-error stdout logs (forces LOG_LEVEL=error). Recommended under stdio MCP clients. |
| MR_MAGIC_HTTP_TIMEOUT_MS | 10000 | Global outbound HTTP timeout in milliseconds. |
| MR_MAGIC_ROOT | (project root) | Override the project root used for .env and .cache path resolution. |
| MR_MAGIC_ENV_PATH | (auto) | Point to a specific .env file instead of <project root>/.env. |
| MR_MAGIC_ALLOWED_HOSTS | (empty) | Comma-separated extra hostnames allowed for DNS rebinding protection when binding to 0.0.0.0. RENDER_EXTERNAL_HOSTNAME is included automatically on Render. Only needed for custom domains. |
| MR_MAGIC_SESSIONLESS | 0 | Set to 1 to force sessionless mode on the MCP Streamable HTTP server — each request is handled by a fresh, temporary server/transport with no in-memory session state. Auto-enabled on Render (see below). |
Genius credentials
| Variable | Description |
| ---------------------- | ------------------------------------------------------------------------------------------------------------------ |
| GENIUS_CLIENT_ID | OAuth client ID for auto-refresh (recommended). Get from genius.com/api-clients. |
| GENIUS_CLIENT_SECRET | OAuth client secret for auto-refresh (recommended). |
| GENIUS_ACCESS_TOKEN | Static fallback bearer token. Used when client credentials are unavailable. |
Token resolution order (first match wins):
- In-memory runtime cache
- Auto-refresh via
GENIUS_CLIENT_ID+GENIUS_CLIENT_SECRET← recommended GENIUS_ACCESS_TOKENenv var (static, no auto-refresh)- On-disk
.cache/genius-token.json(local dev only)
Musixmatch credentials
| Variable | Description |
| ------------------------------- | ------------------------------------------------------------------------ |
| MUSIXMATCH_FALLBACK_TOKEN | Token env var (1st priority). Use for production / ephemeral hosts. |
| MUSIXMATCH_ALT_FALLBACK_TOKEN | Token env var (2nd priority). Alternative name for the same token. |
| MUSIXMATCH_TOKEN_CACHE | Path to the on-disk cache file. Default: .cache/musixmatch-token.json. |
| MUSIXMATCH_AUTO_FETCH | Set to 1 to attempt headless token re-fetch when no token is found. |
Export and storage
| Variable | Default | Description |
| ----------------------------------- | ---------- | ------------------------------------------------------------------------------------------------------------------------------ |
| MR_MAGIC_EXPORT_BACKEND | local | Storage backend: local | inline | redis. |
| MR_MAGIC_EXPORT_DIR | exports/ | Absolute path for local exports. Required when backend is local. |
| MR_MAGIC_EXPORT_TTL_SECONDS | 3600 | TTL for local and redis backends (ignored for inline). |
| MR_MAGIC_DOWNLOAD_BASE_URL | (none) | Public base URL for download links, e.g. https://lyrics.example.com. |
| MR_MAGIC_INLINE_PAYLOAD_MAX_CHARS | 1500 | Character threshold at which build_catalog_payload auto-promotes to reference transport when omitInlineLyrics is true. |
| UPSTASH_REDIS_REST_URL | (none) | Required when MR_MAGIC_EXPORT_BACKEND=redis. |
| UPSTASH_REDIS_REST_TOKEN | (none) | Required when MR_MAGIC_EXPORT_BACKEND=redis. |
Airtable
| Variable | Description |
| -------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ |
| AIRTABLE_PERSONAL_ACCESS_TOKEN | Required for push_catalog_to_airtable. Generate at airtable.com/create/tokens with data.records:write scope. |
Melon
| Variable | Description |
| -------------- | --------------------------------------------------------------------------------------------------- |
| MELON_COOKIE | Optional. Pin a session cookie for consistent results. Anonymous access generally works without it. |
Diagnostics and debugging
| Variable | Default | Description |
| ------------------------------- | ------- | -------------------------------------------------------------------------------------- |
| MR_MAGIC_MCP_HTTP_DIAGNOSTICS | 0 | Set to 1 to log enriched request metadata at the Streamable HTTP transport boundary. |
| MR_MAGIC_LOG_TOOL_ARGS_CHUNKS | 0 | Set to 1 to emit chunk-by-chunk MCP tool argument previews for truncation debugging. |
| MR_MAGIC_TOOL_ARG_CHUNK_SIZE | 400 | Chunk size (chars) used when chunk logging is enabled. |
| MR_MAGIC_SDK_REPRO_HTTP_DEBUG | 0 | Set to 1 for verbose HTTP traces in the SDK repro harness script. |
Provider Credentials
Genius
Genius credentials are resolved in this order — the first available source wins:
Auto-refresh (
GENIUS_CLIENT_ID+GENIUS_CLIENT_SECRET) — the server calls the Genius OAuthclient_credentialsendpoint at runtime and keeps the token refreshed in memory. Recommended for all deployments, including Render and ephemeral hosts. No disk, no scripts, no manual token copying.Fallback token (
GENIUS_ACCESS_TOKEN) — a static bearer token. Works everywhere but does not auto-refresh. Update by redeploying with a new value.Cache token (
.cache/genius-token.json) — written bynpm run fetch:genius-token. Only suitable for local dev with a persistent filesystem.
Musixmatch
Musixmatch uses a captured browser session token. There is no OAuth callback.
For production / ephemeral hosts (Render, containers):
Set MUSIXMATCH_FALLBACK_TOKEN (first priority) or MUSIXMATCH_ALT_FALLBACK_TOKEN
(second priority) directly in your environment. These are the only reliable options
when the filesystem may be wiped between restarts.
For local development:
Run the fetch script once — it opens a Playwright-controlled Chromium window, signs
you in, and writes the token to .cache/musixmatch-token.json:
npm run fetch:musixmatch-tokenThe workflow:
- Run the script on any machine that can open a browser.
- Sign in with Musixmatch (Google sign-in works) when prompted.
- After the redirect to
https://www.musixmatch.com/discover, the script prints the captured token and writes the cache file. - For remote deployments: copy the
tokenvalue from the printed JSON and set it asMUSIXMATCH_FALLBACK_TOKENin your platform environment. Do not rely on the cache file surviving restarts on ephemeral hosts.
Developer accounts: Get API access from developer.musixmatch.com and set the resulting token as
MUSIXMATCH_FALLBACK_TOKEN.Public accounts: Visit auth.musixmatch.com, sign in, and capture the token using the script above.
⚠️ WARNING: Calling the API from an unauthorized account may result in a ban.
Melon
Fetching Melon endpoints works anonymously. If MELON_COOKIE is blank, the server
requests session cookies automatically. Set MELON_COOKIE to a complete cookie header
string only when you need pinned, reproducible sessions.
Export and Download Configuration
The MR_MAGIC_EXPORT_BACKEND variable controls where formatted lyrics are stored:
local(default) — writes files toMR_MAGIC_EXPORT_DIR(orexports/when unset). Make sure the target directory is writable. Theexport_lyricstool also returns the rawcontentfield so clients can inline results when file writes fail.inline— skips disk writes entirely. Each export is returned in the tool response withcontentpopulated andskipped: trueto signal that persistence was intentionally bypassed.redis— stores exports in Upstash. RequiresUPSTASH_REDIS_REST_URL,UPSTASH_REDIS_REST_TOKEN, andMR_MAGIC_DOWNLOAD_BASE_URL.
For Redis exports, MR_MAGIC_DOWNLOAD_BASE_URL must be the publicly reachable base URL
of the server that will serve the download links (not the Upstash URL),
e.g. https://lyrics.example.com. Download links are built as
{base_url}/downloads/{id}/{ext}.
Both HTTP servers serve /downloads/:id/:ext routes:
server:mcp:http(port3444) — the Streamable HTTP MCP server includes its own/downloadsroute. If you are already running this server, no additional HTTP server is needed for Redis exports on Render or any remote deployment.server:http(port3333) — the JSON HTTP automation server also exposes the same route and remains the right choice if you are runningserver:mcp(stdio) only or want a standalone HTTP service for download links.
For local testing against the MCP HTTP server:
MR_MAGIC_DOWNLOAD_BASE_URL=http://127.0.0.1:3444Or against the JSON HTTP server:
MR_MAGIC_DOWNLOAD_BASE_URL=http://127.0.0.1:3333Local Deployment
Run whichever entrypoint you need via npm scripts:
npm run server:http # JSON HTTP automation — 127.0.0.1:3333 by default
npm run server:mcp # MCP stdio transport — ideal for local MCP clients
npm run server:mcp:http # Streamable HTTP MCP — 127.0.0.1:3444 by default
npm run cli -- --help # CLI entrypointSet provider tokens via .env before running. dotenv is for local convenience only —
production environments should inject vars directly.
Remote Deployment
Install dependencies and start the desired transport:
npm ci
npm run server:mcp:http # or server:http / server:mcpUse a process manager (systemd, PM2, Docker CMD, etc.) to keep servers running.
Deploying on Render
Both HTTP servers (server:mcp:http and server:http) are ready for Render with
no extra network configuration. Render automatically sets:
| Variable | Value |
| -------------------------- | ------------------------------------------------------ |
| RENDER | "true" |
| PORT | 10000 (default; overridable in the Render Dashboard) |
| RENDER_EXTERNAL_HOSTNAME | Your service hostname, e.g. myapp.onrender.com |
When RENDER=true is detected, the server binds to 0.0.0.0 automatically and reads
the platform-assigned PORT. No manual HOST or PORT configuration is needed.
The RENDER_EXTERNAL_HOSTNAME is automatically added to the DNS rebinding allowedHosts
list so the MCP SDK does not emit host-validation warnings.
Recommended Render service settings:
- Start Command:
npm run server:mcp:http - Environment: set provider credentials (
GENIUS_CLIENT_ID,GENIUS_CLIENT_SECRET,MUSIXMATCH_FALLBACK_TOKEN, etc.) in the Render Dashboard → Environment tab - Health Check Path:
/health(returns{ "status": "ok", "providers": [...] })
For custom domains, add them to
MR_MAGIC_ALLOWED_HOSTS(comma-separated) in your Render environment so the DNS rebinding protection accepts requests with thoseHostheaders.
Sessionless mode on Render (automatic)
When RENDER=true is detected, the MCP Streamable HTTP server automatically operates
in sessionless mode. This is essential for multi-instance deployments where Render
routes requests across several processes:
- An
initializerequest served by Instance A would store the session in A's in-memoryMap. A follow-uptools/listcall routed to Instance B cannot find that session and returns{"error": "Session not found. …"}. - In sessionless mode, every request —
initialize,tools/list,tools/call, etc. — is handled by a fresh, short-livedServer + StreamableHTTPServerTransportpair. NoMcp-Session-Idheader is issued and no session state is stored. Each request is fully self-contained and works correctly regardless of which instance handles it.
You do not need to set MR_MAGIC_SESSIONLESS=1 manually on Render — it is
auto-enabled via the platform-injected RENDER env var. Set MR_MAGIC_SESSIONLESS=1
explicitly on other multi-instance platforms (ECS, Fly.io, Railway, etc.) where
a similar load-balanced, stateless deployment is used.
Transport selection
| Transport | Command | Use case |
| -------------------- | ------------------------- | ----------------------------------- |
| MCP stdio | npm run server:mcp | Local MCP clients that speak stdio |
| MCP Streamable HTTP | npm run server:mcp:http | Remote MCP clients |
| JSON HTTP automation | npm run server:http | Container / remote automations |
| CLI | npm run cli | Ad-hoc / SSH / CI one-shot commands |
HTTP Endpoints
Both HTTP servers expose a set of plain HTTP routes in addition to their primary transports. These are accessible without any MCP or JSON-RPC framing.
| Endpoint | Method | Server | Description |
| --------------------- | ----------------- | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| /health | GET | Both | Liveness / readiness probe. Returns { "status": "ok", "providers": [...] }. |
| /downloads/:id/:ext | GET | Both | Serve a Redis-backed export by ID and file extension (e.g. plain, lrc, srt). Returns 200 text/plain on hit, 404 when the key is expired or missing. |
| /mcp | POST/GET/DELETE | server:mcp:http only | MCP Streamable HTTP transport endpoint (JSON-RPC 2.0). Each initialize request creates an independent session — reconnects work correctly. |
| /sse | GET | server:mcp:http only | MCP legacy SSE transport. Opens a server-sent event stream. For MCP clients that use the pre-Streamable HTTP protocol. |
| /messages | POST | server:mcp:http only | Companion to /sse. Routes JSON-RPC messages to the correct SSE session via ?sessionId= query param. |
| / | POST | server:http only | JSON HTTP automation endpoint (action-based API). |
/health
Both servers respond to GET /health with a JSON object indicating overall status
and per-provider readiness. Use this as your Render (or container / load-balancer)
health check path.
Response shape:
{
"status": "ok",
"providers": [
{ "name": "lrclib", "status": "ok" },
{ "name": "genius", "status": "ok" },
{ "name": "musixmatch", "status": "missing_token" },
{ "name": "melon", "status": "ok" }
]
}MCP HTTP server (default port 3444):
curl -sS http://127.0.0.1:3444/health | jqJSON HTTP server (default port 3333):
curl -sS http://127.0.0.1:3333/health | jqProvider status values:
| Value | Meaning |
| --------------- | -------------------------------------------------------------- |
| ok | Provider is configured and reachable. |
| missing_token | Required credential env var is not set. |
| error | Provider returned an unexpected error during the status probe. |
/downloads/:id/:ext
Serves a Redis-backed export file by its download ID and format extension. Both
servers expose this route so the same MR_MAGIC_DOWNLOAD_BASE_URL works regardless
of which server you are running.
Parameters:
:id— the opaque download ID returned in theurlfield of an export response:ext— the file format:plain,lrc,srt, orromanized
Example (MCP HTTP server):
curl -sS http://127.0.0.1:3444/downloads/coldplay-yellow-1741234567890/plainExample (JSON HTTP server):
curl -sS http://127.0.0.1:3333/downloads/coldplay-yellow-1741234567890/plainResponses:
200 text/plain— export content served directly404— key expired or never written (MR_MAGIC_EXPORT_TTL_SECONDScontrols TTL, default3600seconds)400— malformed path (missing ID or extension)500— Redis lookup error
Requires
MR_MAGIC_EXPORT_BACKEND=redisand validUPSTASH_*credentials. For local and inline backends, exports are returned directly in the tool response and this route is not used.
MCP Tools
Both the stdio and Streamable HTTP transports expose the same tool registry:
| Tool | Purpose |
| -------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- |
| find_lyrics | Fetch best lyrics (prefers synced) plus metadata and payload. |
| find_synced_lyrics | Like find_lyrics but rejects plain-only results. |
| search_lyrics | List candidate matches across all providers without downloading lyrics. |
| search_provider | Query a single named provider. |
| get_provider_status | Report readiness and notes for each provider. |
| format_lyrics | Format lyrics in memory (optional romanization) for display. |
| export_lyrics | Write plain / LRC / SRT / romanized files to the export backend. |
| select_match | Pick a prior result by provider, index, or synced flag. |
| build_catalog_payload | Return a compact record (title / link / lyrics) for Airtable-style inserts. |
| push_catalog_to_airtable | Write catalog records to Airtable server-side — lyrics never pass through LLM arguments. Requires AIRTABLE_PERSONAL_ACCESS_TOKEN. |
| runtime_status | Snapshot provider readiness plus relevant env vars. |
Airtable Integration
Mr. Magic routes lyrics entirely server-side so long lyric text never passes through LLM tool-call arguments. This eliminates the JSON truncation and malformed-request errors that occur when multiline Korean / CJK lyrics are interpolated into payloads.
How it works
Call
build_catalog_payloadfor each song. The response contains alyricsCacheKey(e.g.kda-ill-show-you) that identifies the resolved lyrics in the server's in-memory LRU cache (20 entries, shared across the MCP session).Create Airtable records (Song title, Spotify link, etc.) using your Airtable MCP's bulk create tools (up to 10 records per call). Capture the
recordIdreturned for each created record.Call
push_catalog_to_airtablewithrecordId,lyricsFieldId, andlyricsCacheKey. The server looks up the cached lyrics and calls the Airtable REST API directly. Lyric text never leaves the server process as an MCP argument.
push_catalog_to_airtable call shape
{
"baseId": "appeBUkVEp3N4RT0C",
"tableId": "tbl0y5XHFXpjUJXHu",
"recordId": "rec1234567890abcd",
"fields": {},
"lyricsFieldId": "fldHV1qmPYmsvglff",
"lyricsCacheKey": "kda-ill-show-you",
"preferRomanized": true
}Set "splitLyricsUpdate": true when the combined create + lyrics payload is too large —
this forces a two-step create → PATCH so the full payload is never sent in one request.
Bundled prompt template
prompts/airtable-song-importer.md (shipped in the npm package) is a ready-to-use
system prompt for MCP assistants that bulk-import songs into Airtable. It covers:
- Phased execution: resolve → bulk create → write lyrics → SRT export
- Bulk record creation up to 10 records per Airtable MCP call
- Spotify link resolution via the Spotify MCP
- Romanized lyric priority for K-pop / CJK content
splitLyricsUpdatefallback for oversized payloads
Copy the file contents into your MCP client's system prompt to deploy immediately.
Safe lyric payload handoff
To avoid embedding raw lyric text in tool-call arguments, request a structured payload:
{
"track": { "artist": "K/DA", "title": "I'll Show You" },
"options": {
"omitInlineLyrics": true,
"lyricsPayloadMode": "payload"
}
}Option reference:
omitInlineLyrics: true— removeslyrics,plainLyrics, andromanizedPlainLyricsfrom the response, keeping it compact.lyricsPayloadMode: "payload"— adds alyricsPayloadobject with the full text inline (transport: "inline"). May auto-promote to"reference"for long lyrics whenomitInlineLyricsis alsotrue.lyricsPayloadMode: "reference"— stores lyrics via the export backend and returns alyricsPayload.referenceobject withfilePathorurlinstead of raw text.airtableSafePayload: true— addslyricsPayload.airtableEscapedContent(quotes / backslashes / newlines pre-escaped) and prefers compact / reference-style handoff.
Important: tools/call.params.arguments must be a plain JSON object. Do not
pre-serialize arguments into a string — build_catalog_payload and select_match
reject stringified payloads.
Calling patterns
Preferred (MCP SDK):
await client.callTool({
name: 'build_catalog_payload',
arguments: {
track: { artist: 'K/DA', title: "I'll Show You" },
options: { omitInlineLyrics: true, lyricsPayloadMode: 'payload', airtableSafePayload: true }
}
});Also valid (raw fetch, object-based):
await fetch('http://127.0.0.1:3444/mcp', {
method: 'POST',
headers: { 'Content-Type': 'application/json', Accept: 'application/json, text/event-stream' },
body: JSON.stringify({
jsonrpc: '2.0',
id: 1,
method: 'tools/call',
params: {
name: 'build_catalog_payload',
arguments: {
track: { artist: 'K/DA', title: "I'll Show You" },
options: { omitInlineLyrics: true, lyricsPayloadMode: 'payload', airtableSafePayload: true }
}
}
})
});Avoid: manual JSON string templates that interpolate multiline lyrics.
Debugging truncated arguments
Enable chunk logging to diagnose malformed / truncated MCP tool arguments:
MR_MAGIC_LOG_TOOL_ARGS_CHUNKS=1
MR_MAGIC_TOOL_ARG_CHUNK_SIZE=400
LOG_LEVEL=debugRecommended presets:
| Scenario | LOG_LEVEL | MR_MAGIC_LOG_TOOL_ARGS_CHUNKS |
| ---------------------- | ----------- | ------------------------------- |
| Normal operation | info | 0 |
| General verbose | debug | 0 |
| Truncation diagnostics | debug | 1 |
MCP Client Configuration
Mr. Magic supports two connection modes depending on where the MCP client runs:
| Mode | Transport | When to use |
| ---------------------------- | ------------------------------------ | --------------------------------------------------------------------------------- |
| Local (stdio) | mcp-server binary via stdin/stdout | Cline, Claude Desktop, and any client that runs locally on the same machine |
| Remote (Streamable HTTP) | POST https://your-server.com/mcp | TypingMind, browser-based clients, and any client connecting to a deployed server |
Local clients (stdio)
⚠️ Stdio MCP clients: Always invoke the server binary directly — never via
npm run server:mcp. The npm script preamble (> [email protected] …) is written to stdout before Node starts, and stdio MCP clients try to parse every stdout line as JSON-RPC, causing "Unexpected token '>'" errors on every connection.
npx (recommended — no clone required)
Works with any local MCP client that supports command / args:
{
"mcpServers": {
"Mr. Magic": {
"command": "npx",
"args": ["-y", "mr-magic-mcp-server"],
"env": {
"GENIUS_ACCESS_TOKEN": "...",
"MUSIXMATCH_FALLBACK_TOKEN": "...",
"AIRTABLE_PERSONAL_ACCESS_TOKEN": "..."
}
}
}
}Global install
After npm install -g mr-magic-mcp-server, the mcp-server binary is on PATH:
{
"mcpServers": {
"Mr. Magic": {
"command": "mcp-server"
}
}
}Local repo — Cline
Cline supports cwd, so you can invoke node directly:
{
"mcpServers": {
"Mr. Magic": {
"disabled": false,
"timeout": 60,
"type": "stdio",
"command": "node",
"args": ["src/bin/mcp-server.js"],
"cwd": "/Users/you/Documents/Code/MCP/mr-magic-mcp-server"
}
}
}Local repo — clients without cwd support
For local clients that don't support a working-directory option, use a shell wrapper:
{
"mcpServers": {
"Mr. Magic": {
"command": "/bin/sh",
"args": ["-c", "cd /Users/you/Code/mr-magic-mcp-server && node src/bin/mcp-server.js"]
}
}
}Remote clients (Streamable HTTP)
When Mr. Magic is deployed on a remote host (Render, VPS, etc.), connect via the
Streamable HTTP MCP endpoint (/mcp). Credentials are configured server-side via
environment variables — no env block is needed in the client config.
TypingMind
TypingMind connects to remote MCP servers through its MCP Connector browser extension (Chrome / Edge). Once your server is deployed:
- Open TypingMind → Plugins → MCP Servers → Add MCP Server.
- Set the endpoint URL to your deployed server's
/mcppath, e.g.:https://your-server.com/mcp - Leave authentication blank (credentials are set server-side via environment variables on the deployed instance).
- Save and enable the server.
"Update required. Please restart your MCP Connector…"
This message is displayed by the TypingMind MCP Connector extension itself — it is not a Mr. Magic error. It means the installed version of the extension predates remote MCP server support. Fix: restart the MCP Connector extension (click the extension icon → restart, or disable and re-enable it in your browser's Extensions settings). If the message persists, update the extension from the Chrome / Edge Web Store. No changes to Mr. Magic or your server configuration are required.
Legacy SSE clients
Some older MCP clients use the pre-Streamable HTTP SSE protocol instead of POST /mcp.
For those, use the legacy SSE endpoint:
GET https://your-server.com/sse ← opens the event stream
POST https://your-server.com/messages ← sends JSON-RPC messagesThe server supports both protocols simultaneously — no restart or reconfiguration needed.
Generic remote client (URL-based config)
Any client that accepts a plain MCP endpoint URL:
https://your-server.com/mcpCLI
A single CLI entrypoint (mrmagic-cli) is published with the package. Inside the
local repo use npm run cli -- <subcommand> unless you have run npm link or
installed globally.
Commands
| Command | Purpose | Notable flags |
| ----------------------------- | ------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- |
| mrmagic-cli search | List candidates across providers without downloading. | --artist, --title, --provider, --duration, --show-all, --pick |
| mrmagic-cli find | Resolve best lyric (prefers synced) and print / export. | --providers, --synced-only, --export, --format, --output, --no-romanize, --choose, --index |
| mrmagic-cli select | Pick first match from a prioritized provider list. | --providers, --artist, --title, --require-synced |
| mrmagic-cli server | Start the JSON automation API. | --host, --port, --remote |
| mrmagic-cli server:mcp | Start the MCP stdio server. | — |
| mrmagic-cli server:mcp:http | Start the Streamable HTTP MCP server. | --host, --port, --remote, --sessionless |
| mrmagic-cli search-provider | Query a single provider only. | --provider, --artist, --title |
| mrmagic-cli status | Print provider readiness. | — |
Examples
# Search all providers
npm run cli -- search --artist "BLACKPINK" --title "Kill This Love"
# Find best lyric (prefers synced LRC)
npm run cli -- find --artist "Nayeon" --title "POP!"
# Pick first synced match from a prioritized provider list
npm run cli -- select --providers lrclib,genius --artist "Nayeon" --title "POP!" --require-synced
# Start JSON automation API on a custom port
mrmagic-cli server --port 4000npm argument forwarding
Both of these forms work:
npm run cli search --artist "K/DA" --title "I'll Show You"
npm run cli -- search --artist "K/DA" --title "I'll Show You"For direct binary usage: mrmagic-cli search --artist "K/DA" --title "I'll Show You".
Manual Testing
Automated checks:
npm run test # full bundled test runner
node src/tests/mcp-tools.test.js # raw MCP integration harness
npm run repro:mcp:arg-boundary # JSON-RPC argument boundary repro
npm run repro:mcp:arg-boundary:sdk # SDK client transport repro
npm run lint
npm run format:checkJSON HTTP server (server:http)
Start the server:
npm run server:httpDefault base URL: http://127.0.0.1:3333
Accepted requests:
GET /healthPOST /with body{ "action": "find|findSynced|search", "track": {...}, "options": {...} }
Health check
curl -sS http://127.0.0.1:3333/health | jqBasic lyric lookup (action=find)
curl -sS -X POST http://127.0.0.1:3333 \
-H 'Content-Type: application/json' \
-d '{"action":"find","track":{"artist":"Coldplay","title":"Yellow"},"options":{}}' | jqSynced-only lookup (action=findSynced)
curl -sS -X POST http://127.0.0.1:3333 \
-H 'Content-Type: application/json' \
-d '{"action":"findSynced","track":{"artist":"Coldplay","title":"Yellow"},"options":{}}' | jqSearch candidates (action=search)
curl -sS -X POST http://127.0.0.1:3333 \
-H 'Content-Type: application/json' \
-d '{"action":"search","track":{"artist":"Coldplay","title":"Yellow"}}' | jqExport flow
curl -sS -X POST http://127.0.0.1:3333 \
-H 'Content-Type: application/json' \
-d '{"action":"find","track":{"artist":"Coldplay","title":"Yellow"},"options":{"export":true,"formats":["plain"]}}' | jqLook for exports.plain in the response:
- redis backend:
urlfield present,skipped: false - local backend:
filePathfield present - inline backend:
contentfield present,skipped: true
To fetch a Redis export download:
EXPORT_URL=$(curl -sS -X POST http://127.0.0.1:3333 \
-H 'Content-Type: application/json' \
-d '{"action":"find","track":{"artist":"Coldplay","title":"Yellow"},"options":{"export":true,"formats":["plain"]}}' \
| jq -r '.exports.plain.url')
curl -sS "$EXPORT_URL" | head -n 10MCP Streamable HTTP server (server:mcp:http)
Start the server:
npm run server:mcp:httpDefault endpoint: http://127.0.0.1:3444/mcp
All requests are JSON-RPC 2.0. Required headers:
Content-Type: application/json
Accept: application/json, text/event-streamTip: use
--sessionlessfor easier stateless manual testing:npm run cli -- server:mcp:http --sessionless
Health check
curl -sS http://127.0.0.1:3444/health | jqList tools
curl -sS -X POST http://127.0.0.1:3444/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | jqfind_lyrics
curl -sS -X POST http://127.0.0.1:3444/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"find_lyrics","arguments":{"track":{"artist":"Coldplay","title":"Yellow"}}}}' | jqfind_synced_lyrics
curl -sS -X POST http://127.0.0.1:3444/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"find_synced_lyrics","arguments":{"track":{"artist":"Coldplay","title":"Yellow"}}}}' | jqbuild_catalog_payload — inline lyrics
curl -sS -X POST http://127.0.0.1:3444/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{
"jsonrpc":"2.0","id":4,"method":"tools/call",
"params":{"name":"build_catalog_payload","arguments":{"track":{"artist":"K/DA","title":"I'\''LL SHOW YOU"},"options":{"preferRomanized":false}}}
}' | jqbuild_catalog_payload — Airtable-safe mode
curl -sS -X POST http://127.0.0.1:3444/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{
"jsonrpc":"2.0","id":5,"method":"tools/call",
"params":{"name":"build_catalog_payload","arguments":{"track":{"artist":"K/DA","title":"I'\''LL SHOW YOU"},"options":{"omitInlineLyrics":true,"lyricsPayloadMode":"payload","airtableSafePayload":true}}}
}' | jqsearch_lyrics
curl -sS -X POST http://127.0.0.1:3444/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":6,"method":"tools/call","params":{"name":"search_lyrics","arguments":{"track":{"artist":"Coldplay","title":"Yellow"}}}}' | jqsearch_provider
curl -sS -X POST http://127.0.0.1:3444/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":7,"method":"tools/call","params":{"name":"search_provider","arguments":{"provider":"lrclib","track":{"artist":"Coldplay","title":"Yellow"}}}}' | jqformat_lyrics
curl -sS -X POST http://127.0.0.1:3444/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":8,"method":"tools/call","params":{"name":"format_lyrics","arguments":{"track":{"artist":"aespa","title":"Supernova"},"options":{"includeSynced":true}}}}' | jqexport_lyrics
curl -sS -X POST http://127.0.0.1:3444/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":9,"method":"tools/call","params":{"name":"export_lyrics","arguments":{"track":{"artist":"Coldplay","title":"Yellow"},"options":{"formats":["plain","lrc","srt"]}}}}' | jqget_provider_status
curl -sS -X POST http://127.0.0.1:3444/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":10,"method":"tools/call","params":{"name":"get_provider_status","arguments":{}}}' | jqruntime_status
curl -sS -X POST http://127.0.0.1:3444/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":11,"method":"tools/call","params":{"name":"runtime_status","arguments":{}}}' | jqpush_catalog_to_airtable
First call build_catalog_payload to populate the lyric cache and capture lyricsCacheKey,
then pass it here — no lyric text goes through tool-call arguments:
curl -sS -X POST http://127.0.0.1:3444/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{
"jsonrpc":"2.0","id":12,"method":"tools/call",
"params":{"name":"push_catalog_to_airtable","arguments":{
"baseId":"appeBUkVEp3N4RT0C",
"tableId":"tbl0y5XHFXpjUJXHu",
"recordId":"rec1234567890abcd",
"fields":{},
"lyricsFieldId":"fldHV1qmPYmsvglff",
"lyricsCacheKey":"kda-ill-show-you",
"preferRomanized":true
}}
}' | jqReplace
baseId,tableId,recordId,lyricsFieldId, andlyricsCacheKeywith real values. RequiresAIRTABLE_PERSONAL_ACCESS_TOKEN.
select_match
curl -sS -X POST http://127.0.0.1:3444/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{
"jsonrpc":"2.0","id":13,"method":"tools/call",
"params":{"name":"select_match","arguments":{
"matches":[{"provider":"lrclib","result":{"title":"Yellow","artist":"Coldplay","synced":true,"plainOnly":false}}],
"criteria":{"requireSynced":true,"index":0}
}}
}' | jqMCP tool response shape:
result.structuredContent— machine-friendly object (all fields, full values)result.content[0].text— complete pretty-printed JSON (identical tostructuredContent)Both channels carry the same complete payload. Programmatic consumers should prefer
structuredContent; LLM agents readingcontent[0].textget the full JSON string.
Running both servers side-by-side
You may want both servers running at the same time — for example, to serve JSON HTTP
automations (server:http) alongside MCP tool calls (server:mcp:http), or to expose
both a REST API and an MCP endpoint under one deployment.
# Terminal 1
npm run server:http # JSON HTTP automation — port 3333
# Terminal 2
npm run server:mcp:http # Streamable HTTP MCP — port 3444Note: Running both is not required for Redis exports. The MCP HTTP server (
server:mcp:http) includes its own/downloads/:id/:extroute, so a singleserver:mcp:httpinstance is self-sufficient for Redis-backed download links. Only runserver:httpalongside it if you also need the JSON HTTP automation API.
Provider Notes
- LRCLIB — Public API with synced lyric coverage. No auth required.
- Genius — Requires
GENIUS_CLIENT_ID+GENIUS_CLIENT_SECRET(auto-refresh, recommended) orGENIUS_ACCESS_TOKEN(static fallback token). - Musixmatch — Requires a token. Use
MUSIXMATCH_FALLBACK_TOKENfor production / ephemeral hosts; use the on-disk cache token (npm run fetch:musixmatch-token) for local dev. See Musixmatch for the full workflow. - Melon — Works anonymously. Set
MELON_COOKIEfor pinned / reproducible sessions.
Providers are queried concurrently and results are normalized into a shared schema exposed via the CLI, HTTP API, and MCP tools.
Changelog
See CHANGELOG.md for a full history of changes.
License
I am not and cannot be held liable for any infringement or ban from services that could occur as a result of using this software. Your usage is solely your responsibility. Godspeed.
© 2026 Kenyatta Naji Johnson-Adams
