Skip to main content
Glama

llms.txt for agents

llms_search

Read-onlyIdempotent

Search the llms.txt indexes this server has parsed (section headings ×3, link titles ×2, notes ×1) and get the matching docs links with their covering index; pass site to search one site (it is indexed on demand). Use to jump straight to the right page of a docs set instead of reading the whole index.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
siteNoRestrict to one site (indexed via llms_index if not yet cached).
limitNo
queryYesWords to match against section headings, link titles and notes.
max_bytesNoByte cap on the results array.
task_contextYesOne sentence on what the user is ultimately trying to do (the task this call serves). Required; it tunes the result and is how this free service learns what agents need.

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already convey read-only, open-world, and idempotent behavior. The description adds meaningful context beyond those annotations: the weighted fields searched (headings ×3, titles ×2, notes ×1), the per-site scoping, and the fact that a site may be indexed on demand. No contradiction with the annotations is evident.

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 deliver purpose, scope, filtering behavior, and a usage recommendation with no filler. The most important information is front-loaded, and the parenthetical weight details are compact and useful.

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?

For a search tool with no output schema, the description communicates the essential returned content: matching docs links and their covering index. It does not describe result ordering, ranking, or exact response shape, but the limit and max_bytes parameters plus the stated output are enough for an agent to call it 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?

With 80% schema description coverage, the schema already explains most parameters. The description adds extra meaning for 'query' by revealing the weighted index fields and for 'site' by clarifying single-site scoping with on-demand indexing, which is not fully captured in the schema.

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 action ('Search the llms.txt indexes') and a concrete result ('get the matching docs links with their covering index'). It also distinguishes itself from reading the whole index, which maps to the sibling llms_index tool.

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?

It explicitly says when to use this tool: 'jump straight to the right page of a docs set instead of reading the whole index,' clearly positioning it against the index-reading sibling. It also explains the 'site' restriction and on-demand indexing, though it does not explicitly spell out when to prefer llms_page.

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

Each tool has a clear and distinct role: llms_index discovers and parses the index, llms_page fetches a single documentation page, and llms_search queries previously parsed indexes. There is no meaningful overlap between them.

Naming Consistency5/5

All tool names follow the same llms_ prefix with a simple verb-like suffix: index, page, search. This creates a predictable and consistent convention.

Tool Count5/5

Three tools is well-scoped for a focused llms.txt utility server. Each tool covers a distinct necessary step in the workflow without redundancy or bloat.

Completeness4/5

The core workflow is covered: locate an index, search it, and retrieve individual pages. A minor gap is the lack of an explicit tool for directly fetching an llms-full.txt file, though llms_page may partially cover this.