bizmuse-mcp
v0.1.6
Published
Official BizMuse MCP server for AI music video generation in Claude, Cursor, Codex, and Windsurf.
Downloads
1,041
Maintainers
Readme
The official Model Context Protocol server for BizMuse AI. It connects Claude, Cursor, Codex, Windsurf, and compatible clients to one asynchronous music video workflow.
Run
npx -y bizmuse-mcpFor MCPB-compatible directories and desktop clients, build a portable bundle with:
npm run bundle:mcpbThe generated artifact is written to artifacts/bizmuse-mcp-<version>.mcpb and can be published as a local stdio server on Smithery.
The package is registered as ai.bizmuse/bizmuse in the official MCP Registry. Namespace ownership is verified directly through bizmuse.ai; no maintainer's personal GitHub identity is exposed as the publisher namespace.
Configure
Set your API key outside the conversation history:
export BIZMUSE_API_KEY=sk_your_api_key_hereBIZMUSE_API_URL is optional and defaults to https://bizmuse.ai.
The server can initialize and expose its tool catalog without credentials so MCP clients and directories can inspect its capabilities. Any tool that calls the BizMuse API still requires BIZMUSE_API_KEY and returns an actionable authentication error when it is missing.
Claude Desktop
Add this server to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"bizmuse": {
"command": "npx",
"args": ["-y", "bizmuse-mcp"],
"env": {
"BIZMUSE_API_KEY": "sk_your_api_key_here"
}
}
}
}Tool Catalog
| Tool | Purpose |
|---|---|
| upload_audio | Upload a local audio file or retain a direct public audio URL |
| upload_image | Upload 1-7 local reference images |
| list_models | Discover available music video models |
| generate_music_video | Submit an asynchronous BizMuse MV task |
| get_task_status | Refresh task progress |
| get_task_result | Retrieve the completed video and cover |
| get_credit_balance | Check the authenticated account balance |
The safe sequence is upload_audio → upload_image → generate_music_video → get_task_status → get_task_result.
Privacy
The MCP process runs locally and communicates with bizmuse.ai. Local files are uploaded only when an upload tool is invoked. API keys are read from the process environment and are never returned as tool output.
Links
- Product
- MCP documentation
- Official MCP Registry
- Smithery directory
- Smithery agent skill
- npm package
- Source code
- CLI documentation
- Agent Skill documentation
- Agent Skills repository
- Support
License
MIT © BizMuse AI
