CatalystB2B API Infrastructure

Agentic Audio and Visual Intelligence for Creative Platforms

An MCP-native API that gives creative tools the ability to understand video and generate culturally accurate audio.

Catalyst Studio • NLE Extension [Live Multitrack Session]
MCP Agent Online
Premiere Pro Catalyst Plugin
Catalyst Agent MCP Engine
Autonomous stem layout generator
Timeline Stem Alignment
Sample-accurate 24-bit multitrack sync
Perception Visual Analyzer
Real-time scene & motion telemetry
Stems: Dialogue • Foley • Ambience • Music
Latency: 120ms (Edge Cache)
Seamlessly plugs into your core editor pipeline
PLUGIN
PLUGIN
PLUGIN
PLUGIN
PLUGIN
PLUGIN
PLUGIN
Pr
Adobe Premiere Pro
DaVinci Resolve
Final Cut Pro
CapCut
Canva
Canva
Ex
Adobe Express
TikTok
YouTube
WHAT'S INSIDE CATALYST

Four APIs. One integration.

src/catalyst/agent.ts
1import { Server } from "@modelcontextprotocol/sdk/server/index.js";
2import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
3import { SonicClient } from "@falcore/sonic";
4import { DirectorAgent } from "./director.js";
5import { AudioEngine } from "../composer/engine.js";
6
7export const catalystServer = new Server({
8 name: "catalyst-mcp",
9 version: "1.0.0",
10}, {
11 capabilities: { tools: {} }
12});
13
14// Tool: Autonomous End-to-End Session Orchestration
15catalystServer.setRequestHandler("call_tool", async (request) => {
16 const { name, arguments: args } = request.params;
17
18 if (name === "catalyst_plan") {
19 // 1. Sonic Visual Scene Intelligence
20 const sceneAnalysis = await SonicClient.analyzeScene({
21 videoUrl: args.video_url,
22 depth: "frame_accurate",
23 culturalTracking: true,
24 });
25
26 // 2. Director Agent Reasoning & Blueprint
27 const director = new DirectorAgent({ context: sceneAnalysis });
28 const implementationPlan = await director.composeSessionPlan({
29 intent: args.intent,
30 minLayers: 5,
31 maxLayers: 100,
32 });
33
34 return {
35 content: [{ type: "json", data: implementationPlan }]
36 };
37 }
38});

The main agentic MCP server. Pass a video and a creative intent — Catalyst understands the scene, builds the plan, and orchestrates the full audio session end to end.

CAPABILITIES

Four ways in. Use what you need.

Catalyst Agent

Give it intent. It plans, you approve, it builds.

The full agentic pipeline. Upload a video, describe your creative direction, and Catalyst's Director Agent analyzes the scene, designs the complete audio layer, and returns an implementation plan before generating a single file. You review. You approve. Then the audio is built — stems, master, and session manifest delivered together.

Visual scene analysis runs automatically before planning
Implementation plan returned for client approval before generation
Generates between 5 and 100 audio layers per session
Frame-accurate timestamp alignment on every layer
Session history stored — resume, modify, re-execute anytime
View API Reference →
Agentic DAW Session • 4 of 24 Stems
Plan Approved
01_dialogue_ambience.wav
Dialogue/Amb
02_tabla_rhythm_teental.wav
Percussion
03_sitar_raag_yaman.wav
Score
04_ceremonial_foley.wav
Foley
Frame-accurate 24-bit multitrack sync • Manifest generatedSession ID: fc_sess_89a0f
THE PIPELINE

Inside the Agentic Pipeline.

Every agentic session runs the same four phases. Nothing skips the queue.

Empowering sound design teams of all sizes to ship at scale

Production-grade multimodal AI pipeline benchmarked for high-throughput video scoring.

Sonic Vision
65%
Latency reduction
Frame-accurate visual analysis
director agent

Real-time, multi-node inference for cinematic Agentic Soundtracks

Autonomous scene reasoning & approval-gated blueprint generation.

Wave Apex Audio

Lossless 24-bit/48kHz stem synthesis running on Catalyst with 10–15 ms latency.

Multi-track neural synthesis with sub-frame musical alignment.

CULTURAL VERIFIER
4 months
faster to launch
99.4% cultural accuracy score
Wave Modal Engine

ML-driven Indian classical & folk composition

Composer API

Powering visual sound design generation at scale

CinePost Studios

“We’re actively saving 2 sound designers’ worth of manual timeline editing”

catalyst-mcp

3x latency decrease for automated DAW timeline scoring

session-manifest.json

“Catalyst makes it easy to orchestrate 100s of audio layers in parallel, delivering lossless stems, masters, and frame-accurate JSON manifests in seconds.”

THE VERIFIER

Autonomous taste.
Built in cultural alignment.

Generating audio is solved. Generating audio that is right for this moment, in this culture, is not.

Every piece of audio Catalyst generates passes through the Indian Cultural Verifier before it is returned. The Verifier is not a filter — it is a judge. It evaluates whether the audio is emotionally correct for the scene, culturally appropriate for the context, and coherent across the full duration of the session.

The Verifier is fine-tuned on preference data from Indian film composers, sound designers, and regional music practitioners. It improves continuously as human editors interact with Catalyst's output — every override is a signal. Every correction makes the Verifier smarter.

Our audio is not proprietary. Our taste is. And our taste gets better for free every time a user disagrees with us.

Verifier Score Rubric
Autonomous Quality Gate
Cultural Stage Coherence
0%
Emotional Alignment
0%
Layered Score Fidelity
0%
Regional Score Accuracy
0%
Preference BaseIndian film composers & sound designers
Self-Refining LoopStudio human override signal stream
PERFORMANCE

Built for Production.

Reliability and speed are not features. They are the baseline.

Uptime Target
SLA Baseline
0.00%

Uptime target across all production endpoints.

Visual Analysis
Sonic Vision
0s

Visual intelligence analysis for videos up to 10 minutes.

Audio Synthesis
Composer API
0s

Standalone audio generation for outputs up to 60 seconds.

Agent Planning
Director Agent
0s

Full implementation plan returned and ready for approval.

INTEGRATION

Integrate in minutes via MCP or REST.

One integration. Any MCP client or plain REST. Your LLM, your stack, your infrastructure.

Model Context Protocol (MCP)
MCP-NATIVE

Connect via the official MCP ClientSession to orchestrate perception, planning, and audio engineering.

# Connect via MCP Protocol
from mcp import ClientSession

async with ClientSession() as session:
    await session.initialize()
    
    # Analyze video
    result = await session.call_tool(
        "sonic_analyze",
        {"video_url": "https://...", "depth": "full"}
    )
    
    # Generate audio session
    plan = await session.call_tool(
        "catalyst_plan",
        {"video_url": "https://...", "intent": "cinematic score"}
    )
Standard REST API
HTTP/2

Plain HTTP endpoints for asynchronous batch video processing, webhook events, and serverless pipelines.

# Plain REST — no MCP client needed
curl -X POST https://api.falcorelabs.com/v1/sonic/analyze \
  -H "X-API-Key: YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"video_url": "https://...", "depth": "full"}'
Catalyst MCP Tool Reference
8 production tools available
ToolDescription
sonic_analyzeSubmit video for visual intelligence analysis
catalyst_planTrigger Director Agent and return implementation plan
catalyst_approveApprove plan and start audio engineering
catalyst_sessionRetrieve stems, master, and session manifest
composer_generateDirect audio generation from prompt and parameters
wave_generateMusic generation with tier and cultural context selection
catalyst_contextRetrieve full session state and history
sonic_searchSearch asset library by text query and filters
FOUNDING ACCESS

Founding access is open.

We are opening a limited number of founding integrations for creative platforms who want to embed audio and visual intelligence before the public launch. Founding partners get priority API access, dedicated onboarding, and direct input on the features we build next. If you are building a video editing tool, a content platform, or a creative workflow product — this is your invitation.

Founding access • Priority onboarding queue
Join our Discord Community • join the conversation →
OR
Shivank
Book a 30 min chat with Shivank
Co-founder & CEO
COMMUNITY · LEADING PLATFORMS AWAIT

Trusted by builders pushing audio-visual limits.

You should not have to choose between speed and taste. Neither do your users. Early access is open.

Join founding moments →
AV
Arjun VermaDocumentary Filmmaker
Filmmaker

The first time Catalyst generated a culturally accurate background score for my wedding film without me touching a single fader, I knew this was different.

Premiere Pro / DaVinciVerified
MV
Marcus VancePlatform Engineer
Developer

We integrated Catalyst in under a day. The MCP protocol made it trivially simple. The output quality is what surprised us.

Frame.io PipelineVerified
ER
Elena RostovaContent Platform Developer
Platform

Sonic's visual analysis is the most structured video understanding output I have seen from any API. It saves us hours of manual metadata work.

SynthLab EngineVerified
DT
David ThornePost-Production Supervisor
Creator

The implementation plan approval gate is brilliant for enterprise workflows. Our editors trust the output because they approved the plan first.

CinePost StudiosVerified
AI
Ananya IyerSenior Sound Designer
Creator

Wave's raga and taal understanding blew our music team away. It doesn't sound like generic AI loops — it has real soul and structure.

SoundCraft LabsVerified
LZ
Liam ZhaoCTO & Co-Founder
Platform

We plugged Sonic and Composer into our short-form video editor in hours. The autonomous audio layering runs seamlessly at scale.

ClipCraft AIVerified
RM
Rohan MukherjeeLead Video Editor
Filmmaker

Having individual stems delivered alongside the master mix gives our editors the surgical control they need to ship client work.

Studio PrismVerified
SL
Sarah K. LarsonHead of Production
Developer

The Cultural Verifier is the secret weapon. It prevents the embarrassing cultural anomalies that other generative models create.

Global Creative TechVerified