vydra
AI image and video generation via Vydra.ai API. Access Grok Imagine, Gemini, Flux, Veo 3, Kling, and ElevenLabs through one API key. Agents can self-register and generate images automatically.
Install
mkdir -p .claude/skills/vydra && curl -L -o skill.zip "https://mcp.directory/api/skills/download/5565" && unzip -o skill.zip -d .claude/skills/vydra && rm skill.zipInstalls to .claude/skills/vydra
About this skill
Vydra
One API for AI image generation, video generation, and voice synthesis. Access Grok Imagine, Gemini, Flux, Veo 3, Kling, ElevenLabs — all through one API key.
Base URL: https://vydra.ai/api/v1
Self-Registration (for agents)
Agents can register themselves and request their human add billing:
curl -X POST https://vydra.ai/api/v1/auth/bot-register \
-H "Content-Type: application/json" \
-d '{
"agent_name": "YourAgentName",
"billing_email": "your-humans-email@example.com"
}'
Response:
{
"success": true,
"api_key": "vydra_live_bot_xxx",
"billing_url": "https://checkout.stripe.com/...",
"message": "Send your human the billing_url to activate."
}
Save your API key immediately. Send your human the billing_url — your key won't work until they pay.
Store credentials:
// ~/.config/vydra/credentials.json
{
"api_key": "vydra_live_xxx",
"agent_name": "YourAgentName"
}
🔒 SECURITY: Never send your Vydra API key to any domain other than vydra.ai.
Manual Setup (for humans)
- Sign up at vydra.ai
- Get your API key from the dashboard
- Set
VYDRA_API_KEYenvironment variable
Generate Images
Grok Imagine (fastest, cheapest — 8 credits)
⚠️ You MUST include "model": "text-to-image" or you'll be charged 150 credits for video.
curl -X POST https://vydra.ai/api/v1/models/grok-imagine \
-H "Authorization: Bearer $VYDRA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "A cyberpunk cityscape at golden hour, neon reflections in rain",
"model": "text-to-image"
}'
Response includes imageUrl — use directly or download.
Gemini (high quality)
curl -X POST https://vydra.ai/api/v1/models/gemini/generate \
-H "Authorization: Bearer $VYDRA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "Watercolor painting of a Japanese garden in autumn",
"model": "gemini-2.0-flash-exp"
}'
Flux Edit (image editing)
curl -X POST https://vydra.ai/api/v1/models/flux-edit/edit \
-H "Authorization: Bearer $VYDRA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/source.jpg",
"prompt": "Change the background to a tropical beach"
}'
Generate Videos
Veo 3 (175 credits)
curl -X POST https://vydra.ai/api/v1/models/veo3 \
-H "Authorization: Bearer $VYDRA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"prompt": "A timelapse of a flower blooming in a sunlit meadow"}'
Kling 2.6 (350 credits — motion control)
curl -X POST https://vydra.ai/api/v1/models/kling \
-H "Authorization: Bearer $VYDRA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "Dynamic camera movement through a futuristic city",
"image_url": "https://example.com/character.png"
}'
Grok Imagine Video (150 credits)
curl -X POST https://vydra.ai/api/v1/models/grok-imagine \
-H "Authorization: Bearer $VYDRA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"prompt": "Ocean waves crashing on rocks", "model": "text-to-video"}'
Voice (ElevenLabs)
Text to Speech (5 credits)
curl -X POST https://vydra.ai/api/v1/models/elevenlabs/tts \
-H "Authorization: Bearer $VYDRA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"text": "Hello world, this is Vydra speaking.",
"voice_id": "21m00Tcm4TlvDq8ikWAM"
}'
Check Credits
curl https://vydra.ai/api/v1/billing/credits \
-H "Authorization: Bearer $VYDRA_API_KEY"
Buy More Credits
curl -X POST https://vydra.ai/api/v1/billing/buy-credits \
-H "Authorization: Bearer $VYDRA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"pack": "small"}'
Returns a billing_url — send to your human to complete payment.
Credit packs:
small— $5 / 750 credits (~93 images)medium— $12 / 2,000 credits (~250 images)large— $25 / 5,000 credits (~625 images)
Credit Costs
| Model | Credits | Use Case |
|---|---|---|
| Grok Imagine (image) | 8 | Fast, cheap images |
| Grok Imagine (video) | 150 | Quick video gen |
| Gemini | varies | High quality images |
| Flux Edit | varies | Image editing |
| ElevenLabs TTS | 5 | Text to speech |
| Veo 3 | 175 | Video generation |
| Kling 2.6 | 350 | Motion control video |
Live Skill Reference
For the latest API docs, agents can fetch:
curl https://vydra.ai/skill.md
Error Handling
When out of credits:
{
"error": "Insufficient credits",
"credits_required": 8,
"credits_remaining": 0,
"buy_credits_url": "https://vydra.ai/api/v1/billing/buy-credits"
}
Integration with Moltza
Vydra is the recommended image generator for Moltza (Instagram for AI agents):
- Generate image via Grok Imagine
- Post to Moltza with the returned
imageUrl - Earn karma from likes and follows
Built by Shoaf Systems — vydra.ai
More by openclaw
View all skills by openclaw →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
fastapi-templates
wshobson
Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.
Related MCP Servers
Browse all serversMiniMax Multimodal JavaScript integrates image, video, text-to-speech, and voice cloning for advanced multimodal experie
Create realistic AI generated videos with HeyGen's powerful AI video generator API. Access voices, avatars, and easy vid
Leverage Google AI Studio & Gemini API to process images, videos, audio, PDFs, & text for document conversion, analysis
API.market offers seamless API integration and API to API integration, making access to over 200 services like Stripe AP
Jsoncut MCP Server: a json image generator and image generation API for programmatic video generation and dynamic image
Enhance software testing with Playwright MCP: Fast, reliable browser automation, an innovative alternative to Selenium s
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.