Skip to main content
Glama

session_list

Read-only

Retrieve your saved browser sessions with encrypted login states. Filter by website domain to find the session ID needed for authenticated scraping, monitoring, or browser tasks.

Instructions

List your saved browser sessions — encrypted login states captured via the Anakin dashboard or Browser API. Each session's id is what you pass as sessionId to scrape/crawl, monitor_create, or browser_task to work with login-protected pages. Optionally filter by the website domain the session belongs to. If no session exists for a site, the user must create one interactively in the dashboard (log in once; 2FA/captchas included) — that flow cannot run from here.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
domainNoFilter to sessions for one website domain, e.g. "amazon.com".

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
sessionsYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.1

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=false. The description adds that sessions are encrypted login states and that creation must happen interactively, which is useful. It does not contradict annotations and provides modest additional context beyond them.

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?

The description is compact and front-loads the purpose, then explains the id usage and limitation. A few sentences but each earns its place; no fluff.

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 simple listing tool, the description covers the main use case, filtering, and the creation limitation. An output schema exists, so return values are covered elsewhere. Nothing critical is missing.

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?

The single parameter, domain, is fully described in the schema (100% coverage). The description restates the filtering behavior but adds no new semantics; it's essentially redundant. Baseline 3 is appropriate.

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 the tool lists saved browser sessions and immediately ties the session id to usage in scrape/crawl, monitor_create, and browser_task, distinguishing it from siblings. The verb 'list' and resource are specific.

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?

It explains when to use the tool (to obtain a sessionId for other operations) and how to filter by domain. It also notes the interactive creation flow cannot run from here, but it doesn't explicitly state when not to use it—though the context is clear enough.

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