Buu AI MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| BUU_SERVER_URL | No | Buu API URL (by default uses the sandbox environment) | |
| BUU_TEAM_API_KEY | Yes | Your Buu AI team API key |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| generate_imageC | [PRIVATE] - Generate image |
| generate_modelD | [PRIVATE] - Generate model. |
| genrequest_get_allB | [PRIVATE] - Get all team's GenRequests by subthread ID |
| subthread_generateC | [PRIVATE] Generates a new subthread. |
| subthread_getC | [PRIVATE] Get team's subthread by ID. |
| subthread_get_allC | [PRIVATE] Get all team's subthreads. |
| team_createC | [PRIVATE] Create a new team for the logged-in user. |
| team_add_memberC | [PRIVATE] Add a new member to the team. |
| team_remove_memberC | [PRIVATE] Remove a member from the team. |
| team_updateC | [PRIVATE] Update team data. |
| team_update_member_roleC | [PRIVATE] Update the role of a team member. |
| team_getB | [PRIVATE] Get the personal team for the current user. |
| team_get_allB | [PRIVATE] Get all teams for the current user. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 13 tools
The tools are mostly distinct with clear boundaries between team management, subthread operations, and generation tasks. However, 'generate_image' and 'generate_model' could be ambiguous without more specific descriptions, as both involve generation but for different outputs.
The naming follows a consistent snake_case pattern with a verb_noun structure (e.g., 'team_create', 'subthread_get'). A minor deviation is 'genrequest_get_all', which uses 'genrequest' as a prefix instead of a clear verb, but overall the pattern is predictable and readable.
With 13 tools, the count is well-scoped for a server handling teams, subthreads, and generation tasks. Each tool appears to serve a specific purpose without redundancy, fitting a typical range for such a domain.
The tool set provides comprehensive CRUD coverage for teams and subthreads, including member management. A minor gap is the lack of update or delete operations for subthreads and generation requests, but agents can likely work around this with the available tools.