Skip to main content
Glama

create_session

Create a detached tmux session on a remote host via SSH, optionally with a command. Enables programmatic management of remote terminal sessions.

Instructions

Crea una sessione tmux detached su un host (comando opzionale).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNo
aliasYes
commandNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/5.0
Behavior2/5

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

No annotations, so the description carries the full behavioral burden. It notes the session is detached (useful), but doesn't disclose what happens if the host is unreachable, whether the session persists, or auth requirements. An output schema exists, but that doesn't excuse the missing mutation context.

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?

A single efficient sentence that front-loads the core action and mentions the optional parameter. No wasted words.

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

Completeness2/5

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

For a mutation tool with zero annotations and 0% schema coverage, the description is too sparse. It leaves the agent guessing about parameter meanings, success behavior, and error conditions.

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 coverage is 0% and the description only mentions the optional command parameter ('comando opzionale'). It says nothing about the required alias or the optional name, so two of three parameters are undocumented in both schema and description.

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?

States a specific verb (crea) and resource (sessione tmux) with the key qualifier 'detached su un host'. This distinguishes it from sibling tools like new_window or list_sessions, 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?

No guidance on when to use this tool versus alternatives. The phrase 'comando opzionale' hints at the optional command param, but there's no context about prerequisites (e.g., tmux must be present) or when to prefer other tools.

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