Generate images, videos, and music directly in your Claude conversations. No code required.
Make sure you have Python and httpx installed:
pip install httpx
Edit your Claude Desktop configuration file:
~/.config/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd this configuration:
{
"mcpServers": {
"vap": {
"command": "python",
"args": ["/path/to/VAP/mcp/vape_mcp_proxy.py"],
"env": {
"VAPE_API_KEY": "your_api_key_here"
}
}
}
}
Get one in seconds: Quick Start Guide. No credit card required to register.
Close and reopen Claude Desktop. VAP tools will appear automatically in your conversation. Just ask Claude to generate media!
For preset execution (streaming_campaign, full_production), use the REST API /v3/execute endpoint. MCP tools are optimized for single-asset generation.
MCP resources provide read-only access to your account data:
| URI | Description |
|---|---|
| vap://account/info | Account details, tier, and daily limits |
| vap://account/balance | Balance breakdown (available, reserved, usable) |
| vap://pricing/current | Current pricing for all generation types |
| vap://tasks/recent | Last 10 tasks with status and result URLs |
Just ask Claude naturally:
"Generate an image of a sunset over mountains"
Claude will automatically:
| Variable | Default | Description |
|---|---|---|
| VAPE_API_KEY | (required) | Your VAP API key |
| VAPE_API_URL | https://api.vapagent.com/mcp | API endpoint URL |
| VAPE_DEBUG | 0 | Enable verbose logging |
{
"mcpServers": {
"vap": {
"command": "python",
"args": ["/path/to/vape_mcp_proxy.py"],
"env": {
"VAPE_API_KEY": "your_key",
"VAPE_DEBUG": "1"
}
}
}
}