Bambuddy MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Bambuddy MCP Servershow me the status of my A1 Mini"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Bambuddy MCP Server
An MCP server that exposes the full Bambuddy REST API as tools for AI assistants.
This MCP server dynamically generates tools from Bambuddy's OpenAPI spec at startup, giving your AI assistant access to 430+ API endpoints — without flooding the context window on startup.
How It Works
On startup, the server fetches the OpenAPI spec from your running Bambuddy instance (/openapi.json), parses all 430+ endpoints, and indexes them by category.
By default, only 3 meta-tools are registered with the AI assistant:
Meta-tool | Purpose |
| Browse available API categories |
| Find tools by keyword (with fuzzy matching) |
| Call any discovered tool by name |
This keeps the context window small while still providing full API coverage. The AI searches for what it needs, inspects the input schema, and executes — all on demand.
When a tool is called, the server makes the corresponding HTTP request to Bambuddy and returns the response. JSON responses are returned as text, while binary responses (e.g. camera snapshots) are returned as native MCP ImageContent with base64-encoded data so AI assistants can see, process, and display them directly.
Related MCP server: Bambu Lab MCP Server
Example Usage
Once configured, you can ask your AI assistant things like:
"What printers are connected?"
"Show me the status of my A1 Mini"
"List my recent print archives"
"Add the benchy to the print queue"
"What filament spools do I have?"
"Check the print progress"
"Turn on the chamber light"
"Show me a camera snapshot from printer X"
Requirements
Python 3.10+
uv — install with
curl -LsSf https://astral.sh/uv/install.sh | shA running Bambuddy instance
Installation
uv pip install bambuddy-mcpOr install from source:
git clone https://github.com/maziggy/bambuddy-mcp.git
cd bambuddy-mcp
uv syncConfiguration
Using uvx
{
"mcpServers": {
"bambuddy": {
"command": "uvx",
"args": ["bambuddy-mcp"],
"env": {
"BAMBUDDY_URL": "http://localhost:8000",
"BAMBUDDY_API_KEY": "your-api-key",
"BAMBUDDY_CENSOR_ACCESS_CODE": "true",
"BAMBUDDY_CENSOR_SERIAL": "true",
"BAMBUDDY_CENSOR_MODEL_FILENAME": "false"
}
}
}
}Local development
For development or running from source:
{
"mcpServers": {
"bambuddy": {
"command": "uv",
"args": ["run", "--directory", "/path/to/bambuddy-mcp", "python", "-m", "bambuddy_mcp"],
"env": {
"BAMBUDDY_URL": "http://localhost:8000",
"BAMBUDDY_API_KEY": "your-api-key",
"BAMBUDDY_CENSOR_ACCESS_CODE": "true",
"BAMBUDDY_CENSOR_SERIAL": "true",
"BAMBUDDY_CENSOR_MODEL_FILENAME": "false"
}
}
}
}NixOS
On NixOS, use the system Python to avoid dynamic linking issues:
{
"mcpServers": {
"bambuddy": {
"command": "nix-shell",
"args": [
"-p", "uv",
"--run", "UV_PYTHON=/run/current-system/sw/bin/python3 uv --directory /path/to/bambuddy-mcp run bambuddy-mcp"
],
"env": {
"BAMBUDDY_URL": "http://localhost:8000",
"BAMBUDDY_API_KEY": "your-api-key"
}
}
}
}Environment Variables
Variable | Default | Description |
|
| Base URL of your Bambuddy instance |
| (empty) | API key for authentication (create in Bambuddy Settings) |
|
| Set to |
|
| Mask |
|
| Mask |
|
| Mask model filenames ( |
Note: By default, the server exposes meta-tools (
list_categories,search_tools,execute_tool,find_printer) that let AI assistants discover and call API endpoints on demand. SetBAMBUDDY_DIRECT_MODE=trueto expose all 430+ tools directly (uses significantly more context).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MrMebelMan/bambuddy-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server