seed-mcp
MCP server that exposes BytePlus Seed Audio 1.0 tools for generating natural speech and audio, checking task status, and listing voices/models.
README
BytePlus Seed Audio
Generate natural speech and audio with BytePlus Seed Audio 1.0 — from Claude, the terminal, or your own code. Three surfaces over one zero-dependency SDK:
| I want to… | Use |
|---|---|
| Talk to Claude / Claude Code | MCP server (seed-mcp) |
| Generate from the terminal | CLI (seed) |
| Claude Code skill | Skill (skills/seed.md) |
| Build my own integration | SDK (seed-sdk) |
Providers: Seed Audio runs on two interchangeable backends, chosen with
SEED_PROVIDER: fal.ai (bytedance/seed-audio-1.0, default, async) or BytePlus / Volcengine Doubao (SEED_PROVIDER=byteplus, the nativeopenspeech.bytedance.comAPI, synchronous). The SDK hides the wire-format differences behind one interface — the MCP tools, CLI, and skill are identical either way. Seeseed/providers/.
Prerequisites
- Python 3.10+ and a local clone of this repo.
- Credentials for one provider:
- fal.ai (default): a
FAL_KEY— get one at https://fal.ai/dashboard/keys. - BytePlus / Volcengine Doubao (optional):
BYTEPLUS_SEED_API_KEY(or the legacyBYTEPLUS_SEED_APP_ID+BYTEPLUS_SEED_ACCESS_KEY), thenSEED_PROVIDER=byteplus.
- fal.ai (default): a
Install
git clone https://github.com/mittulmadaan/byteplus-seed-mcp
cd byteplus-seed-mcp
# Install the three packages
pip install ./packages/seed-sdk ./packages/seed-mcp ./packages/seed-cli
# Or, for development (uv workspace):
uv sync --all-packages --dev
Not on PyPI yet — install from the repo. PyPI publishing kicks in on the first
sdk/v*|mcp/v*|cli/v*release tag (see Release).
🖥 MCP Server
Expose Seed Audio to Claude Desktop / Claude Code.
Local (stdio)
After installing (above):
export FAL_KEY=<your-fal-key>
python -m seed_mcp # stdio transport (default)
Register it with seed skill install (below), or add it manually:
{
"mcpServers": {
"seed": { "command": "python", "args": ["-m", "seed_mcp"] }
}
}
Hosted (Docker / SSE)
docker build -t byteplus-seed-mcp .
docker run -p 8000:8000 \
-e MCP_TRANSPORT=sse \
-e FAL_KEY=<key> \
-e MCP_AUTH_TOKEN=<strong-random-token> \
byteplus-seed-mcp
# health: GET http://localhost:8000/health
A render.yaml is included for one-click Render deployment. Point your MCP client at
https://<host>/mcp (streamable HTTP) with a bearer token — credentials stay server-side,
clients authenticate with MCP_AUTH_TOKEN only:
{
"mcpServers": {
"seed": {
"type": "http",
"url": "https://<host>/mcp",
"headers": { "Authorization": "Bearer <MCP_AUTH_TOKEN>" }
}
}
}
Tools
| Tool | Purpose |
|---|---|
seed_audio_generate |
Submit an audio job → returns request_id (or the audio_url directly on synchronous providers like BytePlus) |
seed_check_task |
Poll until completed; returns audio_url (fal/async) |
seed_list_voices |
List preset voice ids |
seed_list_models |
List Seed models + capabilities |
seed_ping |
Liveness, active provider, credential check |
💻 CLI
seed auth login # stores FAL_KEY in ~/.seed/credentials (installed above)
# Generate
seed generate \
--prompt "A short suspense radio drama in a late-night convenience store." \
--watch
# With a preset voice
seed voices # list presets
seed generate -p "Welcome back to the late show." -v sophie_en_zh --watch
# Voice cloning from reference audio
seed generate -p "In @Audio1's voice: 'Once upon a time…'" \
--audio-ref https://cdn.example.com/narrator.mp3 --watch
# Track a job
seed status <request_id>
seed watch <request_id>
# Skill management (Claude Desktop + Claude Code)
seed skill install
seed skill check
Run seed --help for the full command reference.
🧠 Claude Code Skill
skills/seed.md (+ skills/references/) teaches Claude Code how to use Seed Audio well —
prompting, voice presets, cloning, multi-speaker scenes, and safety.
seed skill install # copies the skill + registers the MCP server
# restart Claude Code, then just ask it to "generate a 20s upbeat intro voiceover"
📦 SDK
from seed import SeedClient
client = SeedClient() # provider from SEED_PROVIDER (default: fal)
result = client.submit_audio(
"A short suspense radio drama in a late-night convenience store.",
output_format="mp3",
)
# BytePlus is synchronous — `result` is already completed. fal is async, so poll.
import time
while not result.terminal:
time.sleep(5)
result = client.check_task(result.request_id)
print(result.audio_url)
seed-sdk has zero runtime dependencies (stdlib urllib only).
Repo structure
byteplus-seed-mcp/
├── packages/
│ ├── seed-sdk/ # core: client, types, credentials, providers/{fal,byteplus}
│ ├── seed-mcp/ # FastMCP server (5 tools, stdio + SSE)
│ └── seed-cli/ # Typer + Rich CLI, skill installer
├── skills/ # seed.md + references/
├── Dockerfile # SSE server image
├── render.yaml # Render.com deployment
└── pyproject.toml # uv workspace
Credentials
Resolution order (first non-empty wins): explicit arg → env var → ~/.seed/credentials
[default] → .env.
| Provider | Env var(s) |
|---|---|
| fal (default) | FAL_KEY |
| BytePlus (new console) | BYTEPLUS_SEED_API_KEY |
| BytePlus (legacy console) | BYTEPLUS_SEED_APP_ID + BYTEPLUS_SEED_ACCESS_KEY |
Never commit credentials or bake them into images. Protect hosted SSE endpoints with
MCP_AUTH_TOKEN.
Release
Independent per-package PyPI publishes via tags:
git tag sdk/v0.1.0 && git push --tags # → seed-sdk
git tag mcp/v0.1.0 && git push --tags # → seed-mcp
git tag cli/v0.1.0 && git push --tags # → seed-cli
Providers
# fal (default, async)
export FAL_KEY=<key> && export SEED_PROVIDER=fal
# BytePlus / Volcengine Doubao (synchronous — submit returns the audio directly)
export BYTEPLUS_SEED_API_KEY=<key> # or BYTEPLUS_SEED_APP_ID + BYTEPLUS_SEED_ACCESS_KEY
export SEED_PROVIDER=byteplus
Voice ids differ between providers (fal presets vs Doubao speaker ids). seed ping shows
the active provider and which credentials are configured.
Roadmap
- [x] Native BytePlus Seed Audio provider (
SEED_PROVIDER=byteplus) - [ ] Local-file upload helper (host local audio/images → public URL)
- [ ] Additional Seed models as they ship
Support
- Repo: https://github.com/mittulmadaan/byteplus-seed-mcp
- Seed Audio on fal: https://fal.ai/models/bytedance/seed-audio-1.0
- fal queue API: https://docs.fal.ai/model-endpoints/queue
- Volcano Engine (BytePlus) Audio Generation API: https://www.volcengine.com/docs/6561/2550782
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.