Skip to main content
Glama
erkankrcr

kasm-workspaces-mcp

by erkankrcr

list_user_sessions

List currently active Kasm workspace sessions for the configured user, enabling quick review and management of running environments.

Instructions

List active sessions for the configured user.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It clearly signals a read-only listing operation and limits results to 'active' sessions, but it does not disclose output shape, authentication implications, or whether 'configured user' refers to an ambient configuration.

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 a single, front-loaded sentence with no filler or redundant phrasing. Every word contributes to the operational meaning.

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

Completeness4/5

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

For a zero-parameter, read-only enumeration tool, this description is mostly sufficient for an agent to call it correctly. It lacks a brief note about return values or the meaning of 'configured user,' but those are not critical blockers for simple invocation.

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?

The tool has zero parameters, so the schema already covers everything. The description still adds value by specifying the implicit subject of the operation ('the configured user'), making invocation semantics clearer than the empty schema alone.

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 names a specific operation ('List'), a specific resource ('sessions'), and a scope ('active sessions for the configured user'). This distinguishes it from the create/destroy/pause/resume sibling tools, though it does not explicitly contrast with get_session_status or clarify who the 'configured user' is.

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?

The intended use is implied: use this tool when you need to enumerate active sessions. However, there is no explicit when-to-use guidance or alternative routing, so the agent must infer the usage context from the tool name and sibling list.

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