streamable-httpupdated 23d ago
Official remote MCP server for ViewMax Studio. Generate AI video, images, music, and speech from Claude, Cursor, ChatGPT (Codex), or any MCP client.
What can you do with ViewMax MCP?
ViewMax MCP
Official remote MCP server for ViewMax Studio. Generate AI video, images, music, and speech from Claude, Cursor, ChatGPT (Codex), or any MCP client.
Endpoint: https://viewmax.studio/api/mcp
Docs: https://viewmax.studio/docs/mcp
Connect
Claude (Web & Desktop)
Settings → Connectors → Add custom connector. Name it ViewMax, paste:
https://viewmax.studio/api/mcp
Click Connect and sign in with your ViewMax account. OAuth, no API key.
Claude Code
claude mcp add --transport http viewmax https://viewmax.studio/api/mcp --header "Authorization: Bearer YOUR_API_KEY"
Cursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"viewmax": {
"url": "https://viewmax.studio/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Codex (ChatGPT)
export VIEWMAX_API_KEY=YOUR_API_KEY
codex mcp add viewmax --url https://viewmax.studio/api/mcp --bearer-token-env-var VIEWMAX_API_KEY
Create an API key in ViewMax Settings → API Keys.
Tools
| Tool | Purpose |
|---|---|
list_video_models / get_video_model |
Discover video models and pricing |
generate_video |
Create a video generation task |
list_image_models / get_image_model |
Discover image models and pricing |
generate_image |
Create an image generation task |
list_music_models |
Discover music models |
generate_music |
Generate music (usually returns URLs immediately) |
list_voices |
List TTS voices |
generate_speech |
Text to speech |
generate_sound_effect |
Sound effect from a prompt |
get_task / wait_for_task |
Poll generation status |
get_credits |
Remaining account credits |
Generation consumes ViewMax credits. Inspect a model before calling a generate_* tool.
License
Documentation in this repository is provided so agents and directories can discover the hosted ViewMax MCP server. The ViewMax product itself is a hosted service at viewmax.studio.
Install
Add ViewMax MCP to your client. Pick the one you use.
claude mcp add --transport http viewmax-mcp https://viewmax.studio/api/mcpcodex mcp add viewmax-mcp --url https://viewmax.studio/api/mcp{
"mcpServers": {
"viewmax-mcp": {
"url": "https://viewmax.studio/api/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"viewmax-mcp": {
"type": "http",
"url": "https://viewmax.studio/api/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"viewmax-mcp": {
"url": "https://viewmax.studio/api/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"viewmax-mcp": {
"serverUrl": "https://viewmax.studio/api/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
8 tools
ViewMax MCP exposes 8 tools to a connected agent.
- generate_video
- Create a video generation task
- generate_image
- Create an image generation task
- list_music_models
- Discover music models
- generate_music
- Generate music (usually returns URLs immediately)
- list_voices
- List TTS voices
- generate_speech
- Text to speech
- generate_sound_effect
- Sound effect from a prompt
- get_credits
- Remaining account credits
Score
65 / 100
Good
- Documentation22/25
- Maintenance19/25
- Trust6/20
- Capability6/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 16 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 8 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Aug 15, 2026 |