Skip to main content
Glama
erkankrcr

kasm-workspaces-mcp

by erkankrcr

get_share_link

Retrieve a view-only share link for a Kasm workspace session enabled for sharing. Provide the share ID to receive a URL for read-only access.

Instructions

Get a view-only share link for a session created with enable_sharing=True.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
share_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/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 behavioral burden. It indicates a read-only result and a prerequisite, but it doesn't explain what share_id refers to, how failures are handled if sharing was not enabled, what the return value looks like, or any authentication requirements.

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 concise sentence with no filler. The necessary precondition is included without unnecessary detail.

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?

This is a simple one-parameter tool with no output schema. The description covers purpose and a key prerequisite, but leaves share_id semantics and return format implicit. This is adequate for a simple getter but not fully complete.

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%, and the description adds no explanation of the share_id parameter beyond what the title and property name already imply. The description does not compensate for the missing schema-level documentation.

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?

States a specific verb ('Get') and resource ('view-only share link') and includes a key precondition (enable_sharing=True). This clearly distinguishes it from sibling session-management tools.

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 gives a clear context for use by specifying that the session must have been created with enable_sharing=True. It does not name alternatives or explicitly say when not to use the tool, but the context is sufficiently clear.

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