Skip to main content
Glama
devicebase

Devicebase MCP Server

Official
by devicebase

computer_hotkey

Send keyboard shortcuts to a remote computer by specifying its serial number and key combination.

Instructions

Press keys together, e.g. ["Control", "Shift", "Escape"].

Args: serialno: The computer device serialno, from list_devices. keys: The keys to press together.

Returns: JSON response from the API.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keysYes
serialnoYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description must disclose behavior fully. It mentions it returns a JSON response, but doesn't discuss permissions, side effects, or how it differs from a single key press. For a hardware-triggering tool, more behavioral context is needed.

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?

The description is concise and well-structured, with a clear example up front and a short args/returns section. Every sentence adds value.

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 tool, the description is mostly complete. It explains the parameters and return type. However, it doesn't mention potential failures, duration of key press, or modifier key specifics, which are relevant for a hotkey tool.

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

Parameters3/5

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

Schema coverage is 0%, so the description must compensate. It explains that 'serialno' comes from list_devices, and 'keys' are the keys to press together. This adds meaning beyond the schema, though it could be more detailed about key format.

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 clearly states what the tool does: 'Press keys together' with an example. It distinguishes itself from similar tools like computer_press by indicating it presses multiple keys simultaneously, though it doesn't explicitly name an alternative.

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

Usage Guidelines2/5

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

There is no explicit guidance on when to use this tool versus alternatives like computer_press or browser_hotkey. The example implies a use case, but no conditions or exclusions are provided.

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