Buu AI 3D Model Generator MCP server

Provides a bridge to the Buu AI platform for generating 3D models from text prompts in various styles including Realistic, LowPoly, Voxel, and Stylized.
Back to servers
Provider
Buu AI
Release date
Apr 23, 2025
Language
TypeScript

This server acts as a command execution gateway for the Buu platform, exposing tools to manage teams, subthreads, and generation requests through a standardized MCP interface. It connects to Buu's GraphQL server and allows you to perform various operations using a simple, consistent API approach.

Installation

To set up the Buu AI MCP Server with Claude Desktop, use the following command:

npx -y @smithery/cli@latest install @OctagonAI/octagon-mcp-server --client claude

Configuration

Required Environment Variables

Before using the server, you must set up the following environment variable:

  • BUU_TEAM_API_KEY: Your Buu AI team API key (required for all operations)

Optional Environment Variables

  • BUU_SERVER_URL: Buu API URL (defaults to the sandbox environment if not specified)

Available Tools

The MCP server provides several categories of tools for interacting with the Buu platform.

Team Management

  • team_create — Create a new team
  • team_add_member — Add a member to a team
  • team_remove_member — Remove a member from a team
  • team_update — Update team data
  • team_update_member_role — Update member role
  • team_get — Get the personal team for the current user
  • team_get_all — Get all teams for the current user

Subthread Operations

  • subthread_generate — Generate a subthread for a Thread
  • subthread_get — Get subthread by ID
  • subthread_get_all — Get all team's subthread

Generation Requests

  • generate_image — Generate image for a subthread
  • generate_model — Generate 3D model for subthread
  • genrequest_get_all — Get all GenRequests for a specific subthread

Communication Method

The server communicates via stdio transport, making it ideal for CLI applications or tool embedding scenarios.

How to add this MCP server to Cursor

There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.

If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.

Adding an MCP server to Cursor globally

To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".

When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:

{
    "mcpServers": {
        "cursor-rules-mcp": {
            "command": "npx",
            "args": [
                "-y",
                "cursor-rules-mcp"
            ]
        }
    }
}

Adding an MCP server to a project

To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.

How to use the MCP server

Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.

The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.

You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later