JoggAI MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with JoggAI MCP or direct API to create avatar videos, generate product videos, run lip-sync jobs, and translate video content through natural language.

JoggAI logoJoggAI
Api Key

JoggAI is an AI video creation platform for avatar, product, lip-sync, template, and translated videos. It helps teams turn scripts, products, and media assets into polished videos through APIs.

36 Tools

Try JoggAI now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
JoggAI
Try asking
TOOLS

Supported Tools

Every JoggAI action and event your agent gets out of the box.

Animate Photo Avatar

Create a reusable animated avatar from a photo-avatar image.

Animate Product Avatar

Add motion and a voice to a selected JoggAI product-avatar image generation.

Create Asset Upload URL

Create a signed URL for uploading an asset to JoggAI.

Create Lip Sync Video

Start an asynchronous lip-sync video from publicly reachable video and audio URLs.

Create Product

Create product information from exactly one source: a product page URL, or manually supplied product details.

Create Product Video

Start a product video using a saved product and nested video, avatar, voice, audio, and script settings.

Create Product Video Previews

Generate product-video previews for one or more visual styles.

Create Talking Avatar Video

Start a talking-avatar video using an avatar and either a text script or hosted audio.

Create Template Video

Start rendering a JoggAI v2 template with typed text, script, image, or video variables and optional avatar, voice, captions, and music settings.

Create Webhook

Create a JoggAI webhook endpoint with a callback URL, delivery status, and event subscriptions.

Delete Webhook

Permanently delete one JoggAI webhook endpoint.

Generate AI Scripts

Start asynchronous AI script generation from a saved product or inline product details.

Generate Photo Avatar Image

Start AI photo-avatar image generation using JoggAI's exact demographic, style, model, and aspect-ratio modes.

Generate Product Avatar Images

Start asynchronous generation of one to four product-avatar images from a public product image and an existing avatar, reference image, or description.

Get Account and Credit Balance

Return the connected JoggAI user and remaining credit balance.

Get AI Script Task

Check an AI script generation task and return generated scripts when completed.

Get Lip Sync Video

Check a lip-sync task and return its output URLs and duration when successful.

Get Photo Avatar

Check photo-avatar motion generation and return the reusable avatar details when complete.

Get Photo Avatar Image

Check photo-avatar image generation and return the generated image URLs and keys when ready.

Get Product Avatar

Check product-avatar motion generation and return the reusable avatar when complete.

Get Product Avatar Image Task

Check a product-avatar image generation batch and return its status summary and generated image candidates.

Get Product Video

Check one product video and return its generated media when available.

Get Talking Avatar Video

Check a talking-avatar video and return its media URLs when completed.

Get Template Video

Check a template-rendered video and return its output details when complete.

Get Video Translation

Check a video translation and return translated media when complete.

List Avatars

List public, instant, photo, or product avatars available for JoggAI video generation.

List Creation Assets

Browse one music, template, visual-style, or voice catalog used to create JoggAI media.

List Product Previews

List generated JoggAI product-video previews and their statuses one page at a time.

List Product Videos

List product videos with status and sort filters, one bounded page at a time.

List Translation Languages

Return currently supported lowercase target-language identifiers for JoggAI video translation.

List Webhook Events

Return event identifiers that can be subscribed to by a JoggAI webhook.

List Webhooks

List webhook endpoints registered on the connected JoggAI account.

Render Product Video Preview

Render one selected product preview into a final video.

Translate Video

Start asynchronous video translation with optional audio-only translation, dubbing, lip sync, subtitles, and dynamic duration.

Update Product

Update an existing JoggAI product's descriptive fields.

Update Webhook

Fully replace an existing JoggAI webhook's callback URL, delivery status, and event subscriptions.

SETUP GUIDE

Connect JoggAI MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK for Python or TypeScript
2

Initialize Client and Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });
const session = await composio.create('your-user-id');
console.log(`Tool Router session created: ${session.mcp.url}`);
Import and initialize the Composio client, then create a Tool Router session for JoggAI
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: session.mcp.url,
    headers: {
      'x-api-key': 'your-composio-api-key',
    },
  },
});

const tools = await client.tools();
const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{
    role: 'user',
    content: 'Create a product video from my uploaded shoe images using a JoggAI template'
  }],
  maxSteps: 5,
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent (Anthropic Claude or Mastra)
SETUP GUIDE

Connect JoggAI API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute JoggAI Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'Create a short AI avatar video introducing our new skincare product using my uploaded media assets'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute JoggAI actions with your Agent

Why Use Composio?

AI Native JoggAI Integration

  • Supports both JoggAI MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable video creation, media lookup, and job execution
  • Rich coverage for creating AI avatar videos, product videos, lip-sync videos, translated videos, and managing supporting media assets

Managed Auth

  • Store JoggAI API keys outside your codebase instead of hard-coding secrets into agents
  • Use auth_configs.create() and connected_accounts.link() to connect each user or environment cleanly
  • Composio handles secure credential storage and request authentication for JoggAI tools

Agent Optimized Design

  • Tools are tuned so agents can pick the right JoggAI action for video generation, template use, translation, and asset management
  • Clear inputs and outputs help models avoid messy video job requests
  • Comprehensive execution logs so you always know which video task ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access JoggAI
  • Scoped, least privilege access to JoggAI video and media workflows
  • Full audit trail of agent actions to support review, debugging, and compliance
FAQ

Frequently asked questions

Yes, JoggAI requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with JoggAI.It takes 30 seconds.

Managed auth, hosted MCP servers, and every JoggAI tool your agent needs.Free to start.

Start building