Skip to main content
Glama

web_profile

Move logged-in browser profiles between machines: export or import encrypted archives, or list saved profiles, so a captcha solved once isn't solved again elsewhere.

Instructions

Move a logged-in browser profile between machines: export writes an encrypted archive, import restores it, list shows the profiles web_login saved. Use so a challenge a person passed once with web_login is not passed again elsewhere. password is required; there is no unencrypted form.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fileNoWhere the archive goes, or comes from. Relative paths land in ~/.svipall/out/.
nameNoThe profile name, as used by web_login and `profile` on web_fetch.
actionNolist (default), export or import.
passwordNoRequired for export and import. The archive is the session; there is no unencrypted form.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.3

TDQS

A4.1/5.0
Behavior4/5

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

Annotations only say readOnlyHint=false and openWorldHint=false, so the description carries most of the burden. It usefully discloses that the archive is encrypted, that the password is required, and that no unencrypted form exists — meaningful behavior beyond the annotations, though it omits what import does if a profile already exists or whether export overwrites.

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?

Three tight sentences, front-loaded with the core action, then the rationale, then the password constraint. Slightly compressed phrasing ('Use so a challenge a person passed once...') but every sentence earns its place.

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 4-parameter tool with no output schema and thin annotations, it covers the three actions, the encryption guarantee, and where files land. Minor gaps remain around error/overwrite behavior, but nothing essential to invoking it correctly 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?

Schema coverage is 100%, so parameters are already documented in the schema; baseline is 3. The description reinforces the required-password constraint and clarifies that list works on profiles saved by web_login, but adds little beyond what the schema already states.

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 ('Move a logged-in browser profile between machines') and enumerates the three modes export/import/list with what each does. It clearly separates this tool from the web_login sibling, which it names.

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?

Gives an explicit rationale for when to use it — so a challenge a person passed once with web_login is not repeated elsewhere — which is strong context. It does not explicitly state when to prefer list over export/import or any exclusion conditions, so it falls short of a full 5.

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