Skip to main content
Glama

riddle_list

Read-onlyIdempotent

Returns a paginated list of Riddles from a single project. Use projectId to specify the project, or omit it to list from the personal project. For Riddles across all projects, use riddle_account_list instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number, 1-indexed, 12 Riddles per page (default: 1). Zero or negative is rejected with a VALIDATION_ERROR, not clamped to page 1 - the same contract as project_list/questionBank_list.
tagsNoFilter by tag IDs (array of integers). Omit to ignore tags.
typeNoFilter by Riddle type (array of strings). Valid values: "Quiz", "Poll", "Form", "Personality", "Predictor", "Minigame", "Leaderboard", "Placeholder", "Story". Omit to include all types.
originNoFilter by how the Riddle was created: "api" (built via the Riddle Builder API or generated by the Riddle AI, so riddle_delete/riddle_builder_update/palette_customize work on it) or "manual" (created by hand in the Creator, where those three are rejected). Omit to include both. Filter value only: the "origin" field returned per Riddle is an object {builder, aiGenerated, apiManageable}, not one of these strings.
searchNoSearch term to filter Riddles by title
sortByNoSort field: "created", "published", or "modified"
statusNoFilter by status: "published", "modified", or "draft". Omit to include all statuses.
notTypeNoExclude specific Riddle types (array of strings, same valid values as type). Omit to exclude nothing.
projectIdNoFilter by project ID; omit or null for the authenticated user's personal project
sortOrderNoSort direction: "ASC" or "DESC"

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, so the safety profile is established. The description adds genuinely useful scoping behavior: the list is bounded to a single project, omitting projectId changes the target to the personal project, and the result is paginated. The description's read-only wording is consistent with the annotations, and it clarifies that this is inherently a list-access, not a mutation, operation.

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?

Three sentences with zero filler. The essential abstraction boundary ("single project") is front-loaded, the invocation guidance on projectId and personal-project fallback follows logically, and the routing to the sibling comes last. For a 10-parameter tool, the description wisely delegates all filter details to the schema the schema already covers them richly.

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?

The description is complete for the selection problem: scope is specified exactly, and the 100% schema coverage plus read-only annotations cover the invocation contract. The primary gap is that there is no output schema and the description doesn't indicate the shape of each returned Riddle (e.g., whether these are summary objects or full Riddle payloads), which an agent invoking the tool fresh would need to learn by calling.

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% and the schema is exceptionally thorough on its own — the page parameter documents the 1-indexed, 12-per-page contract and rejection behavior, the origin parameter distinguishes the filter value from the returned per-Riddle object, and type/notType lists the valid enum values. The description only restates what the schema already says about projectId, adding no new parameter semantics beyond that.

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 states a specific verb and scope: "Returns a paginated list of Riddles from a single project." It goes beyond a generic 'lists riddles' by pinning the abstraction boundary — one project, not all projects — and explicitly names sibling riddle_account_list as the cross-project alternative. An agent can disambiguate this tool from its 60+ siblings from the first sentence.

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 gives an explicit usage context: use projectId for a specific project, omit it for the personal project, and "For Riddles across all projects, use riddle_account_list instead." This names the relevant alternative with the condition that selects it. It doesn't cover every alternative (e.g., when to use riddle_get for a single Riddle), but for the core scope decision it is fully explicit.

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.1/5.0
Disambiguation5/5

Each tool has a clear, unique purpose. The riddle_builder_* variants are distinct by Riddle type, questionBank_* and riddleTemplate_* cover separate objects, and stats_* differ by scope. No two tools appear to perform the same function.

Naming Consistency4/5

Naming is largely consistent with domain prefixes (riddle_, questionBank_, riddleTemplate_, stats_, project_, palette_, reference_). Minor deviations like riddle_account_list vs. riddle_list and whoami (no prefix) and riddle_get_embed_code vs. riddle_qr_code slightly break the pattern, but overall it is predictable.

Tool Count2/5

With 62 tools, the server is far beyond the typical 3-15 well-scoped range. While each tool is functional and the breadth reflects the platform's complexity, the sheer number makes it heavy and increases the cognitive load for an agent, suggesting over-granularity.

Completeness5/5

The tool set covers the full lifecycle: create (builder variants), read (get/list), update (builder_update, rename), delete, publish/unpublish, tagging, templates, question banks, stats, projects, palettes, and reference documentation. No obvious domain operation is missing.

Resources