# JoggAI — Pipedream Connect

> AI Video Generator with Lifelike AI Avatars

- API slug: `joggai` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Marketing
- Website: https://www.jogg.ai
- This page (HTML): https://pipedream.com/apps/joggai
- Tools: 5 actions · 1 trigger

## Connect via MCP (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: joggai`

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "joggai",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// e.g. run Create AI Avatar Photo:
const result = await mcp.callTool({
  name: "joggai-create-ai-avatar-photo",
  arguments: {
    age: "Age",
    aspectRatio: "Aspect Ratio",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## SDK

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "joggai-create-ai-avatar-photo",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    joggai: { authProvisionId: "apn_xxxxxxx" },
    age: "Age",
    aspectRatio: "Aspect Ratio",
  },
})
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Actions (5)

### `joggai-create-ai-avatar-photo` — Create AI Avatar Photo (Write)

Creates an AI avatar photo using JoggAI API. See the documentation

Full schema: https://pipedream.com/apps/joggai/actions/create-ai-avatar-photo.md

### `joggai-create-avatar-video` — Create Avatar Video (Write)

Creates an avatar video using JoggAI API. See the documentation

Full schema: https://pipedream.com/apps/joggai/actions/create-avatar-video.md

### `joggai-create-product-from-product-info` — Create Product from Product Info (Write)

Creates a product from product info using JoggAI API. See the documentation

Full schema: https://pipedream.com/apps/joggai/actions/create-product-from-product-info.md

### `joggai-create-product-from-url` — Create Product from URL (Write)

Creates a product from a URL using JoggAI API. See the documentation

Full schema: https://pipedream.com/apps/joggai/actions/create-product-from-url.md

### `joggai-update-product-info` — Update Product Info (Write)

Updates product info using JoggAI API. See the documentation

Full schema: https://pipedream.com/apps/joggai/actions/update-product-info.md

## Triggers (1)

### `joggai-video-status-changed` — Video Status Changed (Instant) (Instant)

Emit new event when the status of a video changes in JoggAI.

Full schema: https://pipedream.com/apps/joggai/triggers/video-status-changed.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
