Skip to main content
Glama

Rumors pick-up lines

random_line

One random line, optionally narrowed by language and register.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
langNoBase language subtag: tl, pt, id…
registerNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

B3.3/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral burden. It does disclose the essential behavior — one random result with optional narrowing — and 'random line' implies a non-destructive read. But it does not state what happens when filters match nothing, whether repeated calls can repeat lines, or what the returned value looks like. For a very simple tool the core behavior is covered, but edge behavior is left undisclosed.

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?

A single sentence that front-loads the core purpose ('One random line') and appends the scoping info ('optionally narrowed by language and register') behind it. Zero wasted words; every token contributes to an agent's decision to call this tool.

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 tool with only 2 optional parameters, no output schema, and no annotations, the description is nearly adequate: it conveys the operation and the filtering behavior. It is incomplete on the return format (no output schema to fall back on), the source corpus, and the meaning of 'register', which an agent would need to know to invoke it correctly.

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 50% — lang is documented as a Base language subtag but register is not. The description adds real semantic value by clarifying that both parameters are optional narrowing filters rather than required inputs. However, it provides no format, allowed values, or meaning for 'register', and compensation for the undocumented register parameter is limited.

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?

The description states the core operation — returning a single random line — with an implicit verb that is recoverable from context. It names the resource ('line') and its defining trait ('random'), which distinguishes it from the sibling tools get_lines, search_lines, and list_collections. However, it never says what corpus/collection the line is drawn from, so an agent cannot tell the source without opening a sibling's schema.

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?

The phrase 'optionally narrowed by language and register' weakly implies a filtering use case, but there is no explicit statement of when to choose this over get_lines or search_lines, and no exclusion criteria or conditions are given. The agent is left to infer that 'random' is the distinguishing use case on its own.

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

A4/5.0
Disambiguation5/5

Each tool serves a distinct purpose: listing collections, retrieving all lines from a collection, getting a random line, and searching lines. No two tools appear to do the same thing, and the descriptions make the boundaries clear.

Naming Consistency4/5

Three tools follow a clear verb_noun pattern (get_lines, list_collections, search_lines), but random_line is an adjective_noun exception. Overall the naming is predictable and readable, with only a minor deviation.

Tool Count5/5

Four tools is well-scoped for a read-only pick-up line server. Each tool earns its place and there is no bloat or noticeable thinness.

Completeness5/5

The server covers the core read workflows: discover collections, fetch lines from a collection, get a random line, and search across all lines. There are no obvious missing operations for the stated domain.

Resources