From e29c87f0a807a533caa0db44ab0ab048d4dcc2d3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 11 Sep 2026 14:49:36 +0000 Subject: [PATCH 1/2] Add loudreader/loudkit MCP server --- .../github-loudreader-loudkit-788794b9.json | 29 +++++++++++++++++++ docs/multimedia-processing.md | 1 + 2 files changed, 30 insertions(+) create mode 100644 data/server-metadata/github-loudreader-loudkit-788794b9.json diff --git a/data/server-metadata/github-loudreader-loudkit-788794b9.json b/data/server-metadata/github-loudreader-loudkit-788794b9.json new file mode 100644 index 000000000..d2bd4613d --- /dev/null +++ b/data/server-metadata/github-loudreader-loudkit-788794b9.json @@ -0,0 +1,29 @@ +{ + "$schema": "../../schemas/server-metadata.schema.json", + "id": "github-loudreader-loudkit-788794b9", + "source": { + "issue": 2310, + "projectUrl": "https://github.com/loudreader/loudkit" + }, + "install": { + "commands": [ + "uvx --from \"loudkit[mcp,hub]\" loudkit serve --mcp --checkpoint loudreader/loudr-1" + ], + "env": [], + "confidence": "medium" + }, + "transport": [ + "stdio" + ], + "auth": { + "type": "none", + "notes": [] + }, + "clients": [ + "Claude Code", + "Claude Desktop", + "Cursor", + "Cline" + ], + "license": "Apache-2.0" +} diff --git a/docs/multimedia-processing.md b/docs/multimedia-processing.md index 85585c55a..f80791158 100644 --- a/docs/multimedia-processing.md +++ b/docs/multimedia-processing.md @@ -221,3 +221,4 @@ Servers focused on generating or manipulating images, processing video, audio tr - [ArthurBrioche/cadre-video-editor-plugin](https://github.com/ArthurBrioche/cadre-video-editor-plugin): Official MIT-licensed local Claude plugin and stdio MCP bridge for Cadre, a proprietary Apple Silicon macOS screen recorder and non-destructive video editor. With Cadre open, it exposes 57 tools for recording, timeline inspection, cuts, cinematic zooms, on-device captions, styling, saving, and MP4 export through an authenticated loopback Agent API. Install: download the v1.0.2 plugin ZIP for Claude Desktop or Cowork, or clone the repository for Claude Code. Requires macOS 13+, Node.js 22, 24, or 26, and Cadre Pro only for export. - [speakai/speakai-mcp](https://github.com/speakai/speakai-mcp): Official hosted server for Speak AI, transcribing and analyzing audio and video recordings in a Speak AI workspace — speech-to-text in 100+ languages with speaker labels, AI-generated summaries and sentiment, call scoring against custom rubrics, clip creation, and captions. Streamable HTTP at `https://api.speakai.co/v1/mcp`; OAuth 2.1 or `Authorization: Bearer `. Also installable via `npx @speakai/mcp-server`. TypeScript, MIT. - [Synthenova/infiknit-mcp](https://github.com/Synthenova/infiknit-mcp): Local stdio launcher for Infiknit desktop. Agents generate images and videos into a local project and build canvas workflows on the same computer; cloud agents cannot reach it. Install the `infiknit.mcpb` release bundle or clone the repo and run `node plugins/infiknit/bin/infiknit-mcp.cjs` while Infiknit is open. Clients: Claude Code, Codex, Cursor, Grok Build, VS Code, Cline, Copilot, and Gemini CLI. Official registry id `io.github.Synthenova/infiknit`; MIT. +- [loudreader/loudkit](https://github.com/loudreader/loudkit): Lets agents speak text aloud with a local text-to-speech engine: list the 28 built-in voices (10 languages) and voice profiles cloned with the loudkit CLI, synthesize speech as base64 WAV, FLAC, MP3 or Opus with its duration and a continuation for reading long texts in pieces, and describe the loaded model. Runs on-device over stdio: no cloud, no API key. From d640170f4b20c0a045c76579cdc8e66aeff6689f Mon Sep 17 00:00:00 2001 From: wilsonccccc <82747090+wilsonccccc@users.noreply.github.com> Date: Fri, 11 Sep 2026 09:09:33 -0700 Subject: [PATCH 2/2] Polish loudkit MCP metadata --- .../github-loudreader-loudkit-788794b9.json | 33 ++++++++++++++++++- docs/multimedia-processing.md | 2 +- 2 files changed, 33 insertions(+), 2 deletions(-) diff --git a/data/server-metadata/github-loudreader-loudkit-788794b9.json b/data/server-metadata/github-loudreader-loudkit-788794b9.json index d2bd4613d..326b7a648 100644 --- a/data/server-metadata/github-loudreader-loudkit-788794b9.json +++ b/data/server-metadata/github-loudreader-loudkit-788794b9.json @@ -5,6 +5,11 @@ "issue": 2310, "projectUrl": "https://github.com/loudreader/loudkit" }, + "description": "Local stdio MCP server for offline text-to-speech with 28 bundled voices across 10 languages, voice profiles, long-text continuations, and WAV/FLAC/MP3/Opus audio output.", + "category": "Multimedia Processing", + "links": { + "docs": "https://github.com/loudreader/loudkit/blob/main/docs/guides/04-server-and-agents.md" + }, "install": { "commands": [ "uvx --from \"loudkit[mcp,hub]\" loudkit serve --mcp --checkpoint loudreader/loudr-1" @@ -25,5 +30,31 @@ "Cursor", "Cline" ], - "license": "Apache-2.0" + "tools": { + "count": 3, + "names": [ + "list voices", + "synthesize speech", + "describe loaded model" + ], + "source": "self_reported" + }, + "license": "Apache-2.0", + "verification": { + "status": "partial", + "notes": [ + "GitHub repository and PyPI package were reachable during review.", + "README documents `loudkit serve --mcp` as a local stdio MCP server." + ] + }, + "community": { + "maintainedBy": [ + "@loudreader", + "@pepinu" + ], + "verifiedBy": [ + "@TensorBlock" + ], + "claimed": true + } } diff --git a/docs/multimedia-processing.md b/docs/multimedia-processing.md index f80791158..969d337d8 100644 --- a/docs/multimedia-processing.md +++ b/docs/multimedia-processing.md @@ -221,4 +221,4 @@ Servers focused on generating or manipulating images, processing video, audio tr - [ArthurBrioche/cadre-video-editor-plugin](https://github.com/ArthurBrioche/cadre-video-editor-plugin): Official MIT-licensed local Claude plugin and stdio MCP bridge for Cadre, a proprietary Apple Silicon macOS screen recorder and non-destructive video editor. With Cadre open, it exposes 57 tools for recording, timeline inspection, cuts, cinematic zooms, on-device captions, styling, saving, and MP4 export through an authenticated loopback Agent API. Install: download the v1.0.2 plugin ZIP for Claude Desktop or Cowork, or clone the repository for Claude Code. Requires macOS 13+, Node.js 22, 24, or 26, and Cadre Pro only for export. - [speakai/speakai-mcp](https://github.com/speakai/speakai-mcp): Official hosted server for Speak AI, transcribing and analyzing audio and video recordings in a Speak AI workspace — speech-to-text in 100+ languages with speaker labels, AI-generated summaries and sentiment, call scoring against custom rubrics, clip creation, and captions. Streamable HTTP at `https://api.speakai.co/v1/mcp`; OAuth 2.1 or `Authorization: Bearer `. Also installable via `npx @speakai/mcp-server`. TypeScript, MIT. - [Synthenova/infiknit-mcp](https://github.com/Synthenova/infiknit-mcp): Local stdio launcher for Infiknit desktop. Agents generate images and videos into a local project and build canvas workflows on the same computer; cloud agents cannot reach it. Install the `infiknit.mcpb` release bundle or clone the repo and run `node plugins/infiknit/bin/infiknit-mcp.cjs` while Infiknit is open. Clients: Claude Code, Codex, Cursor, Grok Build, VS Code, Cline, Copilot, and Gemini CLI. Official registry id `io.github.Synthenova/infiknit`; MIT. -- [loudreader/loudkit](https://github.com/loudreader/loudkit): Lets agents speak text aloud with a local text-to-speech engine: list the 28 built-in voices (10 languages) and voice profiles cloned with the loudkit CLI, synthesize speech as base64 WAV, FLAC, MP3 or Opus with its duration and a continuation for reading long texts in pieces, and describe the loaded model. Runs on-device over stdio: no cloud, no API key. +- [loudreader/loudkit](https://github.com/loudreader/loudkit): Lets agents speak text aloud with a local text-to-speech engine: list the 28 built-in voices (10 languages) and voice profiles cloned with the loudkit CLI, synthesize speech as base64 WAV, FLAC, MP3 or Opus with its duration and a continuation for reading long texts in pieces, and describe the loaded model. Install: `uvx --from "loudkit[mcp,hub]" loudkit serve --mcp --checkpoint loudreader/loudr-1` (stdio; no cloud, no API key). Apache-2.0.