Skip to main content
Glama
iadevhub
by iadevhub

login

Authenticate as an iadev project admin to receive access and refresh tokens for authenticated API requests.

Instructions

Autenticar como admin do projeto. Retorna accessToken e refreshToken.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYesEmail do admin
senhaYesSenha do admin
tenantSlugNoSlug do projeto (usa IADEV_PROJECT se omitido)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It usefully discloses the return payload (accessToken and refreshToken), which matters because there is no output schema, but it says nothing about authentication failure behavior, token lifetime, rate limiting, or whether tokens are cached/revoked.

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, zero filler, with the core action front-loaded and the return values following. Nothing is wasted.

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 three-parameter login with full schema coverage, the description covers the essential pieces: what it does and what it returns, compensating for the absent output schema. Missing only secondary details like token lifetime or prerequisite ordering for dependent tools.

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 description coverage is 100%: email, senha, and tenantSlug are all documented in the schema, including the IADEV_PROJECT default for tenantSlug. The description adds nothing beyond the schema, so the baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and scope: authenticate as the project admin, and names the artifacts returned (accessToken, refreshToken). It implicitly separates itself from the sibling get_service_token by concerning admin authentication, but never names that alternative explicitly.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No statement of when to use this over get_service_token, nor of any prerequisite or ordering (e.g., that other tools require the returned token). The usage is only inferable from the tool name 'login'.

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