Skip to main content
Glama

linkedin_login

Opens a browser window for manual LinkedIn sign-in, then saves the session to disk for reuse in later tool calls, avoiding automated logins that trigger account blocks.

Instructions

Abre una ventana de navegador en la pantalla de inicio de sesión y espera a que el usuario entre a mano (contraseña, verificación en dos pasos, captcha). La sesión queda guardada en disco y se reutiliza en llamadas futuras. No automatiza el login a propósito: hacerlo es lo que dispara los bloqueos de LinkedIn.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
timeoutSecondsNoCuánto esperar a que termines de iniciar sesión. Por defecto 300.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does it well: it discloses the blocking wait for manual entry including 2FA/captcha, that the session is persisted to disk and reused, and the deliberate anti-automation rationale to avoid LinkedIn blocks. It omits what a login failure looks like or how completion is signaled.

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?

Three focused sentences, front-loaded with the action, then persistence semantics, then the rationale. Every sentence contributes distinct information with no filler.

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?

For a login tool with no output schema and no annotations, the definition covers the interaction model but is silent on return values and how success versus timeout/failure is reported to the agent. Adequate but with a clear gap.

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?

Schema coverage is 100% and the single timeoutSeconds parameter is fully documented in the schema, so the description adds no parameter detail. Baseline 3 is appropriate when the schema does the heavy lifting.

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 action (opens a browser window at the login screen) and its defining scope (waits for manual user login). This clearly distinguishes it from siblings such as linkedin_session_status and linkedin_close_browser without needing their schemas.

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?

Implies the tool is the entry point for establishing a session before other authenticated calls, and explains why login is intentionally manual. It never explicitly names an alternative or states when NOT to use it (e.g., 'skip if linkedin_session_status shows an active session').

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