Skip to main content
Glama
naderfilho

bambu-studio-mcp

by naderfilho

Abrir arquivo no Bambu Studio

bambu_open_in_studio

Opens a 3D model file in Bambu Studio, or launches the application if no file is specified.

Instructions

Abre um arquivo (.3mf, .stl, .step, .obj...) no aplicativo Bambu Studio nesta máquina, ou apenas abre o app se nenhum arquivo for informado.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
file_pathNoArquivo a abrir (opcional)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It discloses the main behavior (opens the local app, with a distinct no-file branch) which is genuinely valuable, but it does not state failure modes — e.g., what happens if the app is not installed or the file path is invalid — nor whether the call blocks until the app is closed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single tight sentence that front-loads the core action and format list, then handles the optional-parameter branch without repetition. Every clause earns its place, and nothing extraneous is present.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-optional-parameter tool with no output schema, the description covers the essential invocation details: what to pass and what happens otherwise. Gaps are the lack of error/return behavior and the implicit prerequisite that Bambu Studio must be installed on the local machine.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, putting the baseline at 3, but the description adds real value: it enumerates the accepted extensions and explains the consequence of omitting file_path (the app opens with no file). This behavioral meaning goes beyond the schema's terse 'Arquivo a abrir (opcional)'.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description has a specific verb-resource pair — 'Abre um arquivo no aplicativo Bambu Studio' — and further narrows scope with supported formats (.3mf, .stl, .step, .obj) and the machine locality. The no-file branch (just open the app) crisply distinguishes it from the siblings, all of which involve the 3D printer rather than the local Studio application.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description makes the use case clear: opening a file or launching the Bambu Studio app on this machine. It does not explicitly name sibling alternatives like bambu_slice or bambu_upload_file as exclusions, but the 'nesta máquina' qualifier and the emphasis on the desktop app make the appropriate context obvious.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.