Skip to main content
Glama

login_complete

Enter the SMS code to finish Sheypoor login and save session cookies for future requests.

Instructions

Complete Sheypoor login with the SMS code. Persists cookies for future sessions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
codeYesSMS code received on the phone
sessionIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

A4/5.0
Behavior4/5

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

No annotations are present, so the description carries the behavioral burden. It explicitly discloses a lasting side effect: 'Persists cookies for future sessions.' This signals that the tool is state-changing, though it does not cover failure cases or invalid-code behavior.

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?

Two short sentences with no filler. The core action is front-loaded, and the important side effect follows immediately.

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?

The description is mostly adequate for a simple two-parameter tool, but it does not explain where sessionId comes from or what the tool returns, especially with no output schema present.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is only 50%, with sessionId left undocumented. The description adds no meaning for sessionId and only repeats the code concept already present in the schema, so the missing parameter semantics are not compensated.

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 and resource: 'Complete Sheypoor login with the SMS code.' It is unambiguous and distinct from the sibling login_start, logout, and whoami tools.

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 implies when to use it: after a login flow has been started and the user has received an SMS code. It does not explicitly name login_start as a prerequisite or list exclusions, so it stops short of a 5.

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