Built for the Agentic Era

POWER YOUR AGENTS
WITH CONTENT.

Give your AI agents the ability to create high-quality viral content. Integrate via REST, MCP, or our native SDKs in minutes.

REST API

Full-featured JSON API for programmatic content generation and management.

curl -X POST https://api.fabrik.ai/v1/generate \
  -H "Authorization: Bearer $FABRIK_API_KEY" \
  -d '{
    "type": "slideshow",
    "topic": "Future of AI",
    "style": "minimalist"
  }'
Webhooks support
Rate limiting
Sandbox environment

MCP Protocol

Model Context Protocol integration for seamless LLM-to-Fabrik communication.

{
  "mcp": "1.0",
  "tool": "fabrik_create",
  "args": {
    "prompt": "Create a viral reel about coding tips",
    "platform": "tiktok"
  }
}
Native LLM support
Real-time context
Secure handshake

Node.js SDK

Type-safe SDK for rapid integration into your JavaScript/TypeScript projects.

import { Fabrik } from '@fabrik/sdk';

const fabrik = new Fabrik(process.env.API_KEY);
const result = await fabrik.videos.create({
  script: "Top 5 VS Code extensions...",
  voice: "echo"
});
Auto-retries
Full TypeScript types
Streaming support

THE MCP
REVOLUTION.

Fabrik is the first content engine to natively support the Model Context Protocol. Connect your LLM directly to our generation pipeline with zero friction.

  • Native Claude & GPT integration
  • Tool-calling for content creation
  • Automatic style injection
  • Real-time feedback loops
mcp-config.json
{
  "mcpServers": {
    "fabrik": {
      "command": "npx",
      "args": ["@fabrik/mcp-server"],
      "env": {
        "FABRIK_API_KEY": "sk_..."
      }
    }
  }
}