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).

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false. The description adds behavioral detail: it fetches a page over the network, extracts specific elements, and returns a text blob. This complements the annotations without contradicting them.

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 concise and front-loaded with the primary action. It communicates the core mechanism, output, and use cases in just two sentences plus a brief list, with zero unnecessary words.

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 effectively explains the return value ('a single text blob ready to drop at site-root/llms.txt'). It also covers the input (any URL), process, and use cases, making it complete for a 2-parameter tool with strong annotations.

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 description coverage is 100% for both parameters (url and max_links), so the schema fully documents them. The description adds no additional parameter semantics beyond what the schema provides, earning the baseline score of 3.

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 the tool generates a production-ready llms.txt file for any URL, with a specific process (fetches page, extracts metadata) and output format. This is a specific verb+resource+scope, and the unique function distinguishes it from siblings like ai_visibility_check or scan_competitor_ai_presence.

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 provides explicit use cases ('getting a client's site indexed by AI, drafting llms.txt for your own project, or auditing...'), giving clear context on when to use. It does not explicitly name alternative sibling tools, but the scenarios are sufficient for an agent to decide.

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

B3.3/5.0
Disambiguation2/5

Many tools have overlapping purposes, especially among Pipeworx query tools (ask_pipeworx, ask_pipeworx_grounded), betting research tools (bet_research, polymarket_arbitrage, polymarket_edges, polymarket_kalshi_spread), and memory tools (remember, recall, forget). An agent could easily select the wrong tool. Additionally, tools like 'discover_tools', 'search', and 'search_within' have unclear boundaries.

Naming Consistency3/5

Most tool names use snake_case (e.g., 'entity_profile', 'validate_claim'), but there are inconsistencies with single-word verbs like 'forget', 'recall', 'remember', 'subscribe', 'unsubscribe', and the mixed pattern of 'ask_pipeworx' vs 'pipeworx_feedback'. Overall, the naming is somewhat consistent but not fully predictable.

Tool Count3/5

With 32 tools, the server has a high but not extreme count. However, the tools span multiple unrelated domains (ontologies, financial data, betting, memory, subscriptions, AI visibility), making the server feel like a collection of disparate features rather than a focused toolset. This reduces the appropriateness of the count for a single server.

Completeness2/5

The tool surface has significant gaps. For example, ontology tools lack create/update/delete operations; betting tools only provide research and analysis but no placement; memory tools allow save/recall/delete but not update; and there is no tool for user authentication or account management despite subscription features. The server covers many areas but none completely.