Vap Agent images (Flux), videos (Veo 3.1), and music (Suno V5) media production

by elestirelbilinc-sketch

1 stars
331 downloads
Not rated
GitHub Website

About

Media Execution Control Layer for AI Agents. Reserve-execute-burn/refund pattern. FFmpeg post-processing (format conversion, audio normalization) Supports Flux2 Pro, Veo 3.1, Suno V5.

Details

Author
elestirelbilinc-sketch
GitHub stars
1
Downloads
331
Categories
Productivity, Other, Media, AI, Developer Tools

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Vap Agent images (Flux), videos (Veo 3.1), and music (Suno V5) media production
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

{
  "mcpServers": {
    "vap": {
      "url": "https://api.vapagent.com/mcp",
      "transport": "streamable-http",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

generate_image

Generate an AI image from text prompt using VAP (Flux2 Pro). Returns a task ID for async tracking. Cost: $0.18

get_task

Get the status and result of a generation task. Returns image URL when completed.

list_tasks

List recent generation tasks with optional status filter.

check_balance

Check VAP account balance. Returns available, reserved, and usable balances.

estimate_cost

Estimate the cost of an image generation before executing. Cost: $0.18

generate_video

Generate an AI video from text prompt using VAP (P-Video). Returns a task ID for async tracking. Cost: $1.96. IMPORTANT: Send ONLY the video description. Do NOT include any instructions, guidelines, or meta-text. Just the pure visual description.

estimate_video_cost

Estimate the cost of a video generation. Cost: $1.96 (P-Video)

generate_music

Generate AI music from text description using VAP. Returns a task ID for async tracking. Cost: $0.68. IMPORTANT: Send ONLY the music description. Do NOT include any instructions or meta-text. Describe: genre, mood, instruments, tempo, vocal style (or specify instrumental). Example prompt: "Upbeat indie folk song with acoustic guitar, warm vocals, and light percussion. Feel-good summer vibes.

estimate_music_cost

Estimate the cost of music generation. Cost: $0.68

inpaint

Remove or replace objects in an image using AI inpainting. Cost: $0.15. Requires Tier 1+.

ai_edit

Edit images using AI with natural language prompts. Supports single and multi-image editing. Cost: $0.15. Requires Tier 1+.

background_remove

Remove the background from an image, leaving only the subject with transparency. Cost: $0.10. Requires Tier 1+.

upscale

Upscale/enhance an image to higher resolution using AI. Cost: $0.15. Requires Tier 1+.

video_trim

Trim a video to a specific time range. Cost: $0.05. Requires Tier 1+.

video_merge

Merge multiple video clips into one continuous video. Cost: $0.05. Requires Tier 1+.

get_operation

Get the status and result of an operation. Returns output URL when completed.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "vap agent images (flux), videos (veo 3.1), and music (suno v5) media production": {
            "vap": {
                "url": "https://api.vapagent.com/mcp",
                "transport": "streamable-http",
                "headers": {
                    "Authorization": "Bearer YOUR_API_KEY"
                }
            }
        }
    }
}

McpServers

{
    "vap": {
        "url": "https://api.vapagent.com/mcp",
        "transport": "streamable-http",
        "headers": {
            "Authorization": "Bearer YOUR_API_KEY"
        }
    }
}

Agent-native AI platform for AI Room, Media API, and Coding Plan API.

Website|Developer Hub|AI Room|Dashboard|Status

Conversational creative workspace where custom-trained AI agents use session context to create images, video, voice, and music.

- Product URL:https://vapagent.com/new
- Plans: Lite, Pro, and Max monthly Room plans

Unified generation API for image, video, and music workflows. Current public model surfaces include Pimo AI-Video, Aura Image Turbo, and Pira V5.5.

- Developer Hub:https://vapagent.com/developer/
- API base URL:https://api.vapagent.com/api/v1
- Create generation:POST /api/v1/generations
- Create operation:POST /api/v1/operations
- Authentication: product-scoped VAP Media API key
- MCP endpoint:https://api.vapagent.com/mcp

OpenAI-compatible API for coding agents, IDEs, editors, and automation workflows. Powered by Nemesis Deep Coder with model IDvap-code.

- Developer Hub:https://vapagent.com/developer/
- Model page:
https://vapagent.com/models/nemesis-deep-coder.html
- Harness guide:
https://vapagent.com/integrations/coding-harnesses.html
- API base URL:https://api.vapagent.com/v1
- Model ID:vap-code
- Responses endpoint:POST /v1/responses
- Chat Completions endpoint:POST /v1/chat/completions
- Authentication: product-scoped VAP Coding Plan API key

Use these entry points for new integrations:

This repository remains the public GitHub and MCP discovery surface for VAP Media API integrations. MCP is still supported for Claude Desktop, Claude Code, Cursor-compatible MCP clients, and other agent workflows that call VAP media tools.

{ "mcpServers": { "vap": { "url": "https://api.vapagent.com/mcp", "headers": { "Authorization": "Bearer YOUR_MEDIA_API_KEY" } } } }

For clients that do not support headers directly, use the local proxy inmcp/vap_mcp_proxy.pyand setVAP_API_KEY.

curl -X POST https://api.vapagent.com/api/v1/generations \ -H "Authorization: Bearer YOUR_MEDIA_API_KEY" \ -H "Content-Type: application/json" \ -d '{"kind":"image","prompt":"a neon city at night"}'
curl -X POST https://api.vapagent.com/v1/chat/completions \ -H "Authorization: Bearer YOUR_CODING_PLAN_API_KEY" \ -H "Content-Type: application/json" \ -d '{"model":"vap-code","messages":[{"role":"user","content":"Review this patch."}]}'

Use these current public contracts from Developer Hub:

- Media API:https://api.vapagent.com/api/v1
- Media generation:POST /api/v1/generations
- Media operations:POST /api/v1/operations
- MCP:https://api.vapagent.com/mcp
- Coding Plan API:https://api.vapagent.com/v1

- server.json: MCP Registry server metadata
- mcp.json: MCP package metadata
- glama.json: Glama MCP listing metadata
- mcp/tools.json: MCP tool schema metadata
- mcp/vap_mcp_proxy.py: local stdio/http proxy for MCP clients

- Website:https://vapagent.com/
- Developer Hub:
https://vapagent.com/developer/
- AI Room:
https://vapagent.com/new
- MCP guide:
https://vapagent.com/mcp.html
- Webhooks:
https://vapagent.com/webhooks.html
- Status:
https://vapagent.com/status.html
- Support:
support@vapagent.com

Turn any language model into a multimodal powerhouse that can generate images, music, videos and more on the fly. Rostro's tools are designed to be used by language models from the ground up, expanding capabilities with minimal context bloat.

All-in-one AI creative studio — generate videos, images, audio in 11 Indian languages, and 3D models via MCP. Hosted at mcp.arcframe.ai.

Official Cannon Studio MCP for AI video, image, 3D, audio, workflow, pricing, model, and developer API guidance.

A server for creating fast and free lipsync videos for digital avatars, supporting both realistic and cartoon styles.

MCP server for AI image, video, voice and music generation, routing prompts to Veo 3.1, Seedance 2.0, Nano Banana 2, GPT-Image-2 and more, from Claude, Cursor, ChatGPT or Codex.

The World's First AI Music MCP Beyond images and video, your agent can now generate music.

AVCLabs MCP integrates AI-powered video upscaling, quality enhancement, and SAM3 image segmentation into MCP workflows. It enhances low-resolution videos, cleans noisy footage, and extracts target objects through text prompts.

Enables AI assistants to interact with DaVinci Resolve Studio for advanced control over video editing, color grading, and audio.

Transcribe and summarize video content from links using various transcription services.

Create AI music videos and audio-reactive visuals from songs through MCP.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.