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

Speekify

mcp-otterlyspacelabs-speekify · by OtterlySpaceLabs

Speekify turns CLI text, stdin, local .txt/.md/.pdf files and YouTube video transcripts or the readable content of a URL into a local WAV file

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

Install

$ agentstack add mcp-otterlyspacelabs-speekify

✓ 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 Used
  • 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-otterlyspacelabs-speekify)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo 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 Speekify? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Speekify

Speekify turns text into a local WAV file you can listen to — from inline CLI text, stdin, local .txt/.md/.pdf files, YouTube transcripts, or the readable content of a URL. Audio is generated locally with Supertonic v3.

Features

| Capability | What you get | |---|---| | Many input sources | Inline text, piped stdin, local .txt/.md/.pdf files, readable URLs, and YouTube transcripts — auto-detected. | | Local TTS | WAV files synthesized on your machine with Supertonic v3 — no audio leaves your computer. | | Multilingual | en, fr, de, es, it, pt, ja, ko, and more, plus na for language-agnostic synthesis. | | Auto-translation | By default Speekify auto-detects the source language and synthesizes in it — no translation. English is detected and translated to French before TTS only when you pass --lang fr. | | Voice control | 10 built-in voices (M1M5, F1F5), custom Voice Builder JSON styles, plus speed and synthesis-step tuning. | | MCP server | Expose Speekify as a tool so AI assistants can generate audio during automations. |

Install

speekify setup (run once after installing) downloads and warms the Supertonic model and, by default, the English→French translation model. If you skip it, the models download automatically on first use.

macOS — no Python or uv required

Once a release is published, install the standalone binary via Homebrew:

brew tap otterlyspacelabs/speekify https://github.com/OtterlySpaceLabs/speekify
brew install speekify
speekify setup

Or download the archive directly:

curl -L -o speekify.tar.gz https://github.com/OtterlySpaceLabs/speekify/releases/latest/download/speekify-macos-arm64.tar.gz
tar -xzf speekify.tar.gz
mv speekify /usr/local/bin/speekify
speekify setup

With pip / pipx / uv

Once released on PyPI:

pip install speekify        # or: pipx install speekify  (recommended for CLIs)
speekify setup

uv tool install speekify    # uv users
speekify setup

Run without installing:

uvx speekify "Hello world"
pipx run speekify "Hello world"

From source with uv

uv sync
uv run speekify setup

Quick start

Speekify is a CLI. Give it inline text, a URL, a local file path, or piped stdin:

speekify "Hello world"                                        # inline text
speekify https://example.com/article                          # readable URL
speekify ~/Documents/article.pdf                              # local PDF
speekify --lang fr "https://www.youtube.com/watch?v=eSP7PLTXNy8"   # YouTube
printf 'Hello from stdin' | speekify                          # stdin
speekify --voice F2 --output-dir ~/Desktop "Hello world"      # pick voice + dir

Wrap URLs in quotes when they contain ? or & (common with YouTube), or the shell may reject the command. From a source checkout, prefix any command with uv run (e.g. uv run speekify "Hello world").

→ Full command list, every option, and the config file: [docs/usage.md](docs/usage.md).

MCP automation server

Speekify ships a local Model Context Protocol (MCP) server so AI assistants can call it as a tool. It exposes speekify_generate_wav (text/URL/file → WAV with structured details), speekify_generation_defaults (supported voices, languages, and ranges), and a news_recap_to_audio prompt template.

speekify mcp                              # stdio transport for desktop AI clients
speekify mcp --transport streamable-http  # HTTP endpoint for local experiments

Per-client setup (Claude Code, GitHub Copilot, Codex, OpenAI remote MCP): [docs/mcp-clients.md](docs/mcp-clients.md).

Documentation

| Doc | Contents | |---|---| | [docs/usage.md](docs/usage.md) | Full CLI reference — every command, option, the config file, and output naming. | | [docs/sources.md](docs/sources.md) | Supported input sources, extraction rules and limits, translation, text handling, and logs. | | [docs/mcp-clients.md](docs/mcp-clients.md) | MCP server setup for Claude Code, GitHub Copilot, Codex, and remote MCP. | | [docs/release-procedure.md](docs/release-procedure.md) | Maintainer release checklist. |

Usage and content

Speekify only fetches content you explicitly point it at, for your own personal use. You are responsible for respecting the terms of service and copyright of any source you extract from, including YouTube transcripts. The maintainers provide no rights over third-party content.

License

MIT — see [LICENSE](LICENSE). Copyright © 2026 Otterly Space SARL.

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.