Home Integrations
🔌

Integrations

Learn more about how to use Buu in other platforms and games!
Carlos
By Carlos
6 articles

Overview of Buu AI Integrations

Buu AI is built to be more than just a standalone 3D generator. It’s a connected platform that integrates smoothly with popular creation tools, game engines, and development environments. Whether you're building a Roblox experience, designing in Blender, or using a custom server for multiplayer games, Buu AI helps you bring your assets into your workflow with ease. This article offers a complete overview of all current and upcoming integrations supported by Buu AI. 🔌 Why Integrate? By connecting Buu AI with your favorite tools, you can: - Export 3D assets directly into your development environment - Automate workflows using API access - Collaborate across platforms - Speed up your pipeline from ideation to implementation Integrations give you full control of how and where your creations live. ✅ Current Integrations Here’s what’s currently available: 1. MCP Server Integration (Model Context Protocol) Buu AI supports the Model Context Protocol, allowing external AI agents and autonomous systems to interact with Buu’s generative engine. This opens up use cases like: - AI characters generating or modifying 3D assets in real-time - Agents that request assets for simulation or training - Orchestration of complex workflows using multiple AI models If you're building next-gen tools or experiments in agent-based systems, MCP is the bridge between your agent and Buu AI's 3D generation stack. 2. GraphQL API Access Developers can use their API Key to query Buu AI’s GraphQL API and: - Submit prompts programmatically - Retrieve generation results - Monitor usage and credit balances Documentation is available inside your Developer Settings. A RESTful API is currently in development and will be released soon with full documentation. 3. Roblox Plugin A dedicated plugin for Roblox Studio allows creators to: - Import Buu AI assets into the Roblox workspace - Auto-scale and convert materials to Roblox format - Build immersive worlds faster with custom content Installation instructions and usage tips are available in the plugin dashboard. 4. Blender Plugin Buu AI's Blender plugin lets artists: - Sync Buu AI creations directly into Blender - Customize models with Blender tools - Create scenes, animations, or renders using Buu-generated assets Works with Blender 3.0 and above. 🔜 Coming Soon We're actively working on deep integrations with the most popular real-time engines and sandbox platforms: 1. Unity - One-click asset imports into Unity Editor - Material conversion support - Drag and drop from Buu AI’s cloud storage 2. Unreal Engine - FBX and glTF model import pipeline - Support for Niagara VFX integration - Plugin for Unreal Marketplace access 3. Fortnite Creative - Custom asset generation for Fortnite Creative maps - UEFN import compatibility - Share assets with your Epic account Release timelines for these plugins will be announced via our changelog and newsletters. 🧠 Where to Start - Head to buu.fun and sign in - Go to API keys section - Follow setup instructions or copy your API key - Start importing, building, and sharing If you're not sure which integration fits your workflow, try experimenting with the Blender plugin or the Roblox Studio integration as starting points.

Last updated on May 03, 2025

Connecting to MCP Servers

Buu AI is designed to work not only with humans, but also with AI agents and autonomous systems. Through support for the Model Context Protocol (MCP), Buu AI allows AI systems to programmatically generate and manipulate 3D assets in real-time. This opens up a powerful new dimension of integration, one where AI talks directly to Buu AI. In this article, you’ll learn what MCP is, why it matters, and how to connect to the official Buu MCP server. 🧠 What Is MCP? MCP (Model Context Protocol) is a communication standard that allows AI agents to connect with structured interfaces in a plug-and-play fashion. Think of it as a universal language that lets AI agents: - Discover capabilities of connected services - Send and receive structured requests and responses - Use tools like Buu AI as extensions of their own cognition MCP is ideal for developers building: - Multi-agent systems - AI-driven games or simulations - Agent orchestration workflows - Training loops involving 3D asset feedback 🌐 Official Buu MCP Server Buu AI is registered as an official tool on Glama’s MCP registry. Buu MCP Server URL: https://glama.ai/mcp/servers/@Buu-AI/buu-mcp-server This server exposes Buu AI's core tool interface, allowing agents to: - Submit 3D generation requests using prompts or image inputs - Retrieve completed model metadata - Monitor credit status - Chain Buu generations as part of larger decision flows 🔧 How to Connect Your Agent To connect an AI agent to the Buu MCP server: 1. Ensure your agent framework supports MCP standard communication 2. Register or authenticate if required (Buu AI handles secure access tokens) 3. Point your agent to the server endpoint: https://glama.ai/mcp/servers/@Buu-AI/buu-mcp-server 4. Parse the server’s capability schema to understand available tools and arguments 5. Begin using the generation tool by sending structured commands like: { "tool": "generate_3d_asset", "args": { "prompt": "Futuristic helmet with red lights", "style": "sci-fi" } } Responses will include asset metadata, model preview links, and processing status. 🤖 Use Cases You can integrate Buu AI into: - Autonomous design agents that create assets based on user goals - World-building systems that generate props on demand - Educational AIs that show how visual prompts translate to 3D models - Simulations that evolve assets based on real-time decisions MCP makes it possible for agents to use Buu AI as a creative partner. 📘 Developer Resources For more technical details, check: - Glama MCP Overview - Tool schema at the Buu MCP endpoint - GitHub Repository If you're unsure where to start, contact your agent orchestration platform to ensure MCP compatibility.

Last updated on May 03, 2025

How to Use GraphQL API Keys with Buu AI

For developers and creators looking to integrate Buu AI directly into their apps, tools, or backend systems, the GraphQL API offers a powerful way to automate and scale 3D generation. With just a few lines of code, you can submit prompts, retrieve assets, and manage your usage — all through secure API calls. In this guide, we’ll walk through how to access your API key, structure GraphQL requests, and make your first successful 3D generation call. 🔑 Step 1: Get Your API Key 1. Log in to your Buu AI account 2. Go to API Keys 3. Click Generate API Key 4. Copy the key and store it securely ⚠️ Treat your API key like a password, anyone with this key can use your credits. 🧠 What You Can Do with the GraphQL API The Buu AI GraphQL endpoint allows you to: - Submit text or image prompts - Specify generation styles - Monitor credit usage - Fetch generation results, including download links and metadata This makes it ideal for: - Creating automated pipelines - Building custom prompt interfaces - Embedding Buu AI inside your apps, bots, or services 📡 Endpoint Information GraphQL API Base URL: https://api.buu.ai/graphql Standard headers: Authorization: Bearer YOUR_API_KEY Content-Type: application/json 🧪 Example Query Here’s a basic mutation that submits a prompt: mutation { generate3DAsset(input: { prompt: "Magic staff with glowing blue crystal", style: "fantasy" }) { id status previewUrl modelUrl } } Once processed, you can use the returned id to check status or download the final model file. 🧰 Checking Generation Status To check the status of a generation: query { assetStatus(id: "asset_id_here") { status modelUrl previewUrl style } } Statuses include: - pending - processing - complete - failed 📦 Output Format Models are returned in standard formats: - .glb is currently supported, .fbx and .obj is coming soon. - Preview images and metadata. Download links expire after a short period, so make sure to store results promptly. 📘 Coming Soon: RESTful API We’re currently working on a RESTful API for users who prefer traditional REST endpoints over GraphQL. Full documentation, SDKs, and Postman collections will be released in the upcoming developer update. 🧠 Pro Tips - Create a separate API key for each environment (dev, staging, prod) - Use rate limiting in your app logic - Log all requests to monitor credit usage and debug errors - Wrap API calls inside retry logic for reliability With the GraphQL API, Buu AI becomes part of your stack, ready to generate assets at scale, on demand, and in sync with your systems.

Last updated on May 03, 2025

Roblox Plugin

The Buu AI Model Generator is a plugin designed for Roblox Studio, enabling developers to generate 3D models directly within the platform. This tool streamlines the asset creation process, allowing for rapid prototyping and development. 🔧 How to Install the Plugin 1. Open Roblox Studio and navigate to the Plugins tab. 2. Click on Manage Plugins and then select Find Plugins. 3. Search for Buu AI Model Generator. 4. Click Install to add the plugin to your Roblox Studio environment. Alternatively, you can install the plugin directly from the Roblox Creator Store. 🚀 Using the Plugin 1. After installation, open the Buu AI Model Generator from the Plugins tab. 2. Input a descriptive prompt for the model you wish to generate. 3. Click Generate to create the model. 4. The generated model will appear in your workspace, ready for use or further customization. 🎯 Best Practices - Descriptive Prompts: Use clear and specific prompts to achieve the desired model output. - Model Optimization: After generation, review the model for optimization, especially if it's intended for in-game use. - Customization: Feel free to modify the generated models to better fit your game's aesthetic or requirements. 📌 Notes - Ensure you have a stable internet connection, as the plugin may require online access to generate models. - Regularly check for plugin updates to access new features and improvements. The Buu AI Model Generator plugin is a valuable tool for Roblox developers looking to expedite the asset creation process. By integrating this plugin into your development workflow, you can enhance productivity and bring your creative visions to life more efficiently.

Last updated on May 03, 2025

Upcoming Integrations: Unity, Unreal Engine, and Fortnite Creative

Buu AI is rapidly expanding its ecosystem to meet the needs of real-time 3D developers, game studios, and creators. In addition to current integrations like Blender and Roblox, Buu AI is building native plugins and export flows for Unity, Unreal Engine, and Fortnite Creative. This article gives you a preview of what to expect and how these integrations will fit into your production pipeline. 🧩 Unity Integration (Coming Soon) Unity is one of the world’s most popular real-time development platforms. The upcoming Buu AI plugin for Unity will make it easy to import and use generated 3D assets without any manual conversions. 🔜 Features You Can Expect: - One-click import from your Buu AI account into the Unity Editor - Automatic material conversion using Unity’s standard shader - Prefab generation, enabling you to drop models directly into your scene - Optional LOD (Level of Detail) support for performance optimization - Unity package manager distribution 🧠 Who It's For: - Indie game developers - XR and mobile game creators - Developers using Unity for prototyping or virtual experiences 🎮 Unreal Engine Integration (Coming Soon) For teams building large-scale or cinematic experiences, Unreal Engine offers cutting-edge visual fidelity. Buu AI’s integration with Unreal will provide a streamlined pipeline for high-quality asset ingestion. 🔜 Planned Capabilities: - FBX and glTF import support - Materials converted into Unreal’s PBR shader graph - Asset placement directly in the Content Browser - Skeletal mesh and rigging support for character-based models - Early compatibility with UEFN (Unreal Editor for Fortnite) 🧠 Who It's For: - Studios creating high-end games or film-quality assets - Metaverse and immersive experience developers - Technical artists and simulation teams 🕹️ Fortnite Creative Integration (Coming Soon) Fortnite Creative and UEFN have opened the door for a new kind of content creation. Buu AI plans to make it easy for creators to generate and use custom 3D props inside Fortnite Creative. 🔜 What To Expect: - Generate stylized assets for use in Fortnite Creative maps - Support for UEFN import pipeline - Link Buu AI creations to your Epic Games account - Tutorials for asset validation and publishing This integration will be ideal for creators building custom game modes, interactive maps, or narrative environments in Fortnite. 📅 Release Timeline and Updates While specific release dates will be announced progressively, here’s a general timeline: - Unity Plugin: Q3 - Unreal Plugin: Q3 - Fortnite Creative Support: Tied to UEFN plugin rollout, expected Q3 or Q4 Sign up for Buu AI's newsletter or follow product announcements to stay updated. 🔗 How to Prepare - Familiarize yourself with your engine’s import settings (FBX, glTF, shaders) - Get your Buu AI account and API key ready - Organize your generation prompts and asset naming for smooth workflows Once these plugins are live, integrating 3D AI generation into Unity, Unreal, or Fortnite will be as easy as clicking "Import".

Last updated on May 03, 2025

Integration Troubleshooting & FAQ

Integrating Buu AI into your creative workflow should feel smooth, but like any connected tool, you might encounter issues along the way. Whether you're using the GraphQL API, Roblox plugin, or preparing for upcoming Unity and Unreal support, this guide covers common problems, their solutions, and answers to frequently asked questions. ⚠️ Common Issues and Fixes 1. Plugin Not Showing in Roblox Studio - Fix: Make sure you have installed the plugin from the official Roblox Creator Store - Check: That it is enabled under Plugins > Manage Plugins - Restart: Roblox Studio after installing 2. GraphQL API Key Not Working - Fix: Ensure you are including the API key in the Authorization header using the format: Authorization: Bearer YOUR_API_KEY - Check: That your key hasn’t expired or been regenerated - Tip: If in doubt, revoke the key in your Developer Dashboard and generate a new one 3. MCP Agent Connection Fails - Fix: Confirm that your agent supports the Model Context Protocol - Check: Your agent is targeting the correct server endpoint: https://glama.ai/mcp/servers/@Buu-AI/buu-mcp-server - Tip: Parse the schema before sending tool calls to verify proper request structure 4. Assets Not Importing Correctly into Blender - Fix: Make sure you are using Blender version 3.0 or later - Check: That the plugin is enabled under Edit > Preferences > Add-ons - Try: Downloading the .glb version of the model instead of .fbx if you're encountering shader issues 5. Web AR View Doesn’t Load on Mobile - Fix: Confirm you're using a modern mobile browser (Chrome, Safari) - Check: That camera permissions are enabled - Restart: Browser if the AR view appears frozen or fails to load ❓ Frequently Asked Questions Q: How do I switch between different styles in the Roblox plugin? A: Enter your desired prompt, then choose the style dropdown before generating. Style-specific imports are automatically converted to Roblox-compatible materials. Q: Can I use the same API key across multiple environments? A: Yes, but we recommend creating separate keys for development, staging, and production to monitor usage and prevent conflicts. Q: Will the RESTful API require a different key? A: No. When the REST API launches, your existing GraphQL keys will remain compatible unless otherwise noted. Q: Can I use Buu AI models in commercial games? A: Yes. All assets you generate are yours to use in commercial or non-commercial projects. Please review Buu AI’s [Terms of Use] for any license updates. Q: Do upcoming integrations support live sync? A: Unity and Unreal plugins will eventually support live model syncing, but early versions will start with manual or one-click imports. Q: Is there version control or history for my generations? A: Yes. Your generation history is available in your Dashboard, where you can view, re-download, or re-generate older prompts. 🧰 Still Need Help? - Visit the Support Center inside your Buu AI dashboard - If you're a premium user, submit a ticket if you’re encountering persistent integration issues - Join the community Discord for direct help from the Buu team and other users

Last updated on May 03, 2025