Skip to main content
Glama
danieldoalto

Terminal Session Manager

by danieldoalto

Create Session

create_session

Creates and starts a new persistent terminal session, optionally bound to a registered device, for running and monitoring async jobs.

Instructions

Creates and starts a new persistent terminal session.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoHuman-readable name for the session.default
device_identifierNoOptional nickname or UUID of a registered device to bind.

Output 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?

No annotations are provided, so the description carries the full burden. It discloses two meaningful traits — the session is 'persistent' and it is 'started' immediately on creation — but says nothing about auth/permissions, name-collision behavior, or what happens if the device binding fails.

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 short sentence with the action verb front-loaded and zero filler. Every word contributes to identifying the operation.

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

Completeness5/5

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

Output schema exists, so return values needn't be described, and the schema fully documents both optional parameters. With zero required parameters and a single, simple operation, the description covers what an agent needs to make the call.

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?

Both parameters are fully documented in the schema (100% coverage), including the device-binding semantics, so the description needn't compensate. Baseline 3 applies; the description adds no parameter detail beyond the schema, though the schema already handles it well.

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+resource pair ('Creates ... a persistent terminal session') that unambiguously distinguishes it from the read/write/list/close siblings. The phrase 'persistent terminal session' also pins down the resource type rather than a generic session.

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 versus alternatives, no prerequisites, and no mention of what happens with an already-existing session name. The implied workflow (create before read/write) is left entirely to inference from sibling names.

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