Skip to main content
Glama
surfskyio

surfsky-mcp

Official
by surfskyio

List sessions

surfsky_session_list
Read-onlyIdempotent

List active account sessions with IDs and metadata, helping you spot leaked sessions to terminate or identify the default session.

Instructions

List the account's running sessions: session_id, profile_uuid, started_at, active_seconds, whether this server started it (owned) and whether it is this server's default. Read-only. Use it to find leaked sessions to stop, or the default session's id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.0.1

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior. The description reinforces this with 'Read-only' and adds meaningful behavioral detail about what fields are included, such as 'owned' and 'default' flags, which goes beyond the annotations.

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 compact and front-loaded: the core listing action and output fields come first, followed by a one-word safety note and concrete use cases. Every sentence earns its place with no redundancy.

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?

This is a simple, zero-parameter read-only tool with no output schema, and the description compensates by listing the returned fields and common purposes. It is complete enough for an agent to call it correctly, though it doesn't mention response format or potential pagination.

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 provides complete coverage. Per baseline, a 4 is appropriate since the description doesn't need to add parameter semantics.

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?

The description clearly states a specific verb ('List') and resource ('the account's running sessions'), and enumerates the exact fields returned. It distinguishes itself from sibling session management tools by focusing on listing rather than starting or stopping sessions.

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 explicitly gives use cases: finding leaked sessions to stop and retrieving the default session's id. It does not mention alternatives or exclusions, but the intended usage is clear and actionable.

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