Skip to main content
Glama

Generate llms.txt

generate_llms_txt
Read-onlyIdempotent

Generate a production-ready llms.txt file for any URL so AI crawlers (ChatGPT, Claude, Perplexity) can index the site cleanly. Fetches the page, extracts title/description/key links, and emits the standard llms.txt markdown format. Output is a single text blob ready to drop at site-root/llms.txt. Useful for: getting a client's site indexed by AI, drafting llms.txt for your own project, or auditing how an AI crawler would see a competitor.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesFull URL of the site to summarize, e.g. "https://example.com" or a specific landing page.
max_linksNoMaximum number of link entries to include (default 25, max 50).

Schema Changelog

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

  1. First observed

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint as false, indicating a safe, non-destructive read operation. The description adds that it fetches the page and extracts content, which is useful behavioral context. However, it doesn't go beyond what annotations imply, so a 3 is appropriate.

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?

The description is two sentences with a bullet list of use cases, efficiently conveying purpose, behavior, and applications without fluff. Every sentence earns its place.

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?

For a simple tool with 2 parameters, no output schema, and strong annotations, the description covers the purpose, process (fetch, extract, emit), and use cases. It is complete enough for an agent to understand when to invoke it.

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 input schema has 100% description coverage for both parameters (url and max_links). The description doesn't add significant meaning beyond the schema, such as URL format or link count details. Baseline 3 is correct as the schema already documents the parameters well.

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 clearly states 'Generate a production-ready llms.txt file for any URL', specifying the verb (generate), resource (llms.txt file), and purpose (AI crawler indexing). It distinguishes itself from sibling tools like ai_visibility_check by being the dedicated tool for generating the llms.txt file.

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 lists explicit use cases: getting a client's site indexed, drafting for own project, auditing competitor AI visibility. While it doesn't explicitly state when not to use it, the use cases are clear and cover the main scenarios, providing good guidance without excluding alternatives.

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

A3.6/5.0
Disambiguation2/5

Several tool clusters overlap heavily: ask_pipeworx, ask_pipeworx_beta, ask_pipeworx_grounded, and deep_research all route questions to data sources; polymarket_arbitrage, polymarket_edges, polymarket_edge_tracker, polymarket_fill_risk, polymarket_kalshi_spread, and bet_research all target prediction-market analysis; and all_cases plus convert_case both handle text-case conversion. An agent will struggle to pick the right tool without deep reading.

Naming Consistency3/5

Nearly all names are lowercase with underscores, but the morphological pattern is mixed: some are verb_noun (convert_case, compare_entities, resolve_entity, scan_dependency), many are bare nouns (entity_profile, pipeworx_trending, polymarket_edges, all_cases), and a few are single-word verbs (forget, recall, remember). Still readable, but not a predictable verb_noun convention throughout.

Tool Count2/5

33 tools is far too many for a server named 'Textcase' — only all_cases and convert_case relate to the apparent purpose. The remaining 31 constitute a sprawling assortment of data research, prediction markets, memory, subscriptions, and feedback tools that have nothing to do with text casing, making the count feel bloated and misaligned.

Completeness2/5

For the stated text-case domain, the two converters cover the basic transformations but lack supporting operations like case detection, batch processing, or custom case definitions. More fundamentally, the tool surface is incoherent: the majority of tools serve foreign domains (Pipeworx data, Polymarket, subscriptions), so there is no clear domain to evaluate for completeness, and obvious gaps exist within whatever the server is meant to be.