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.
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
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)BUU_SERVER_URL
: Buu API URL (defaults to the sandbox environment if not specified)The MCP server provides several categories of tools for interacting with the Buu platform.
team_create
— Create a new teamteam_add_member
— Add a member to a teamteam_remove_member
— Remove a member from a teamteam_update
— Update team datateam_update_member_role
— Update member roleteam_get
— Get the personal team for the current userteam_get_all
— Get all teams for the current usersubthread_generate
— Generate a subthread for a Threadsubthread_get
— Get subthread by IDsubthread_get_all
— Get all team's subthreadgenerate_image
— Generate image for a subthreadgenerate_model
— Generate 3D model for subthreadgenrequest_get_all
— Get all GenRequests for a specific subthreadThe server communicates via stdio
transport, making it ideal for CLI applications or tool embedding scenarios.
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.
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"
]
}
}
}
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.
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.