Skip to main content
Glama

kweenkl_login

Start the kweenkl login/onboarding flow. If the user provides their device_token (from the iOS app), this will immediately create their webhook. Otherwise, guides them to download the app or join the waitlist.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailNoUser's email address for waitlist subscription (only used if has_app is false)
has_appNoWhether the user already has the kweenkl iOS app installed. If true and no device_token, starts device auth flow.
device_tokenNoThe user's device token from the kweenkl iOS app. If provided, immediately creates a webhook for them.

TDQS

A4.4/5.0
Behavior4/5

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

Description adds context beyond annotations: explains branching behavior (webhook creation vs. app download/waitlist). Annotations already indicate mutation (readOnlyHint=false) and non-destructive nature (destructiveHint=false), which description respects.

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 sentences: first defines core purpose, second explains conditions. No redundant words, front-loaded with key information.

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?

Given no output schema and moderate complexity, the description covers parameter roles and branching. Lacks details on return values or error handling, but these are not critical for a login flow.

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

Parameters4/5

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

With 100% schema coverage, baseline is 3. Description adds value by explaining parameter interactions (e.g., email only used if has_app is false, device_token triggers immediate webhook).

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 it starts the kweenkl login/onboarding flow, with specific conditions for creating a webhook or guiding the user. It distinguishes from sibling kweenkl_login_check which checks status.

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?

Provides clear conditional guidance based on device_token presence and has_app flag. Does not explicitly mention when not to use it, but the conditions imply appropriate scenarios.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: fetch retrieves by ID, kweenkl sends notifications, login and login_check handle auth, status checks connectivity, and search queries history. No ambiguity.

Naming Consistency3/5

Tools mix generic verbs like 'fetch' and 'search' with the 'kweenkl_' prefix for auth and status tools, and 'kweenkl' as a standalone verb tool. This is somewhat inconsistent but still readable.

Tool Count5/5

6 tools is well-scoped for a notification service. Each tool serves a needed function without bloat.

Completeness2/5

Lacks channel management tools (create, update, delete) and a listing tool beyond search. Users cannot fully manage the lifecycle of channels or notifications.