Skip to main content
Glama
5omeOtherGuy

linux_desktop

by 5omeOtherGuy

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

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

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
desktop_statusA

Discover Linux desktop capabilities, screen geometry and windows before choosing a target.

desktop_observeC

Observe controls and screenshot together; a window screenshot focuses that window. Omit window for the full desktop.

desktop_execB

Run persistent Python desktop automation. desktop and display(image) are preloaded. Batch actions, verify the result, and call w.observe() to return UI evidence. See server instructions for the API.

desktop_cancelA

Stop the running desktop worker independently, release its held input, and reset persistent variables.

desktop_resetA

Reset the persistent desktop runtime and release input. Does not close user applications.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.5/5.0

Scored across 5 tools

Disambiguation2/5

desktop_status, desktop_observe, and desktop_exec are largely distinct, but desktop_cancel and desktop_reset have heavily overlapping descriptions—both release input and reset persistent variables. Additionally, desktop_exec's ability to call w.observe() blurs the boundary with the standalone desktop_observe tool.

Naming Consistency4/5

All tools share the consistent desktop_ prefix and use snake_case, making the naming predictable. The pattern is mostly desktop_<action>, though 'status' is a noun rather than a verb and 'exec' is an abbreviation, which are minor deviations.

Tool Count5/5

Five tools is a well-scoped size for a desktop automation server. Each tool covers a phase of the workflow—discover, observe, execute, cancel, and reset—without unnecessary bloat.

Completeness4/5

The set covers the core lifecycle of discovery, observation, execution, and cleanup, and desktop_exec's arbitrary Python capability provides broad automation coverage. A notable minor gap is the lack of a clear way to query the runtime/worker state, which would help agents decide between cancel and reset.

Maintenance

ActivityMaintained
ResponsivenessNo issues