Skip to main content
Glama

select_index

Fetch a signed delta index and rank entries by query, respecting page and token budgets for efficient selection.

Instructions

Fetch a signed delta index and rank entries by query within page/token budgets.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryNoSearch terms to rank entries
domainYesOrigin domain, e.g. news.aifeed.md
indexUrlNoIndex URL override (default /.well-known/aifeed-index.json)
max_pagesNoMaximum entries to select
max_tokensNoToken budget across selected entries

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It mentions 'signed delta index' and 'rank entries' but does not disclose behavior such as caching, error handling, what happens if the index is unavailable, or how ranking is performed. The minimal text leaves significant behavioral unknowns.

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?

A single sentence, front-loaded with the primary action and constraints. It is efficient and to the point, though it omits some detail; still, it earns a high score for conciseness.

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

Completeness2/5

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

For a tool with 5 parameters, no output schema, and no annotations, the description is too sparse. It does not explain what a 'delta index' is, how ranking works, or how the budget parameters interact, leaving an agent with insufficient context for correct invocation.

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?

The schema covers 100% of parameters with descriptions, so the baseline is 3. The description echoes the budget concept (page/token) that already exists in the schema, adding little new meaning beyond what the structured fields provide.

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 a clear action (fetch and rank) on a specific resource (signed delta index, entries) with explicit constraints (page/token budgets). It conveys what the tool does, but it does not explicitly contrast with sibling tools like verify_manifest or fetch_aifeed, so it falls short of a perfect 5.

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?

There is no guidance on when to use this tool versus the siblings. The description only explains the operation, not the conditions under which an agent should select it, nor any prerequisites or exclusions.

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