Skip to main content
Glama
devicebase

Devicebase MCP Server

Official
by devicebase

computer_launch_app

Launch a desktop application on a specified computer by providing its serial number and the app name. Returns the API result.

Instructions

Launch a desktop application.

Args: serialno: The computer device serialno, from list_devices. app_name: The application name.

Returns: JSON response from the API.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
app_nameYes
serialnoYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3/5.0
Behavior2/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 of behavioral disclosure. It only states that it launches an app and returns a JSON response, without mentioning side effects, whether it blocks, permissions, app-already-running behavior, or failure modes.

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

Conciseness4/5

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

The description is short, front-loaded with the core action, and uses a clear Args/Returns structure. The Returns line is somewhat boilerplate given the output schema exists, but overall it is appropriately sized and has no fluff.

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 simple two-parameter launch tool, this is minimally viable: it identifies both required parameters and the source of serialno. However, it leaves app_name semantics ambiguous and provides no guidance on how to resolve or specify the application, which an agent might need for a correct call.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate. It adds a useful source hint for serialno ('from list_devices'), but app_name is described only as 'The application name', which is nearly tautological and leaves unclear whether it expects a display name, path, or package identifier.

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

Purpose4/5

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

The description uses a specific verb and resource: 'Launch a desktop application.' The word 'desktop' helps distinguish it from mobile_launch_app and browser_launch, though it does not explicitly name or contrast those alternatives.

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

Usage Guidelines3/5

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

Usage is implied by the action ('launch a desktop application') and the helpful note that serialno comes from list_devices. However, it does not explicitly state when to prefer this tool over mobile_launch_app or browser_launch, and it provides no exclusions or alternative routing.

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