Skip to main content
Glama

question_bank_list

Read-onlyIdempotent

Lists question banks. Scope "own" (the default) lists the banks of a project - the same ones the Creator shows; pass a projectId to look into another project, omit it for the project the API key is scoped to (your personal ones on a user API key). Paginated {items, page, pageSize, total, hasMore}. Scope "templates" lists the built-in starter banks instead - pre-filled banks anyone can copy with question_bank_manage(action: "duplicate") to get real content immediately instead of starting empty. It takes riddleType and nothing else (a handful of them, nothing to page or search) and answers with id, title, PUBLISHED "itemCount", DRAFT "draftItemCount", which blockTypes those items are (null when that cannot be told yet) and a few example categories out of "categoryCount". A template that was never published reports "itemCount": 0 however many questions it holds - judge its real size by "draftItemCount", the number a duplicate would give you, and read the chosen id with question_bank_get and question_bank_get_items before duplicating. Every write here rejects a template id: a template is only ever changed through a copy of it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number (default: 1). Scope "own" only.
tagsNoFilter by tag IDs (array of integers), as returned by riddle_tag_list. Omit to ignore tags. Scope "own" only.
scopeNoWhat to list: "own" (default) for the question banks of a project, "templates" for the built-in starter banks anyone can duplicate.
searchNoSearch term to filter banks by title. Scope "own" only.
sortByNoSort field: "createdAt" or "modifiedAt". Defaults to "createdAt". Scope "own" only.
pageSizeNoItems per page (default: 12, max: 50). Scope "own" only.
projectIdNoThe project (team) ID whose banks you want, as returned by project_list. Omit for the banks of the project the API key is scoped to (your personal ones on a user API key). Scope "own" only.
sortOrderNoSort direction: "ASC" or "DESC". Defaults to "DESC". Scope "own" only.
riddleTypeNoFilter by Riddle type ("Quiz" or "Poll"). Omit to list banks of every type. Applies to both scopes.

Schema Changelog

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

  1. Added

TDQS

A4.8/5.0
Behavior5/5

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

Annotations already declare readOnly/idempotent, and the description adds valuable behavior beyond that: pagination shape, itemCount=0 for never-published templates, draftItemCount as the real size, and inaccuracy caveats for blockTypes and exampleCategories. It also states the read-only policy implication of no automated duplication. No contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense and front-loaded with the core purpose, then organized by scope. It is long, but nearly every sentence adds useful context; a few phrases could be tightened, such as the idempotent/read-policy sentence, which partially repeats annotations.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description supplies the return structure ({items, page, pageSize, total, hasMore}) and entity fields (id, title, itemCount, draftItemCount, blockTypes, exampleCategories, categoryCount). It also explains the lack of pagination for templates and routes to question_bank_get for exact data, so an agent has what it needs to call correctly.

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?

Schema coverage is 100%, so baseline is 3. The description earns above baseline by clarifying that templates scope ignores all parameters except riddleType, and by explaining how projectId interacts with API-key scoping in practical terms. The schema already documents parameter meanings, so the additional value is moderate but real.

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 opens with a specific verb+resource ('Lists question banks') and immediately distinguishes two scopes: 'own' vs 'templates', each with distinct semantics. It also names question_bank_get as the exact-data alternative, clearly differentiating it from related siblings.

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

Usage Guidelines5/5

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

It explicitly says when to use 'own' (project banks, optionally via projectId or the API-key-scoped default) and when to use 'templates' (built-in starter banks). It also gives a when-not: use question_bank_get instead if exact blockTypes or exampleCategories are needed, and warns against automated duplication.

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.

Resources