You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generate a standardized llms.txt (and optionally llms-full.txt) file for a given domain. This file defines how large language models should interact with the site.
406
+
407
+
```json
408
+
{
409
+
"name": "firecrawl_generate_llmstxt",
410
+
"arguments": {
411
+
"url": "https://example.com",
412
+
"maxUrls": 20,
413
+
"showFullText": true
414
+
}
415
+
}
416
+
```
417
+
418
+
Arguments:
419
+
420
+
- url (string, required): The base URL of the website to analyze.
421
+
- maxUrls (number, optional): Max number of URLs to include (default: 10).
422
+
- showFullText (boolean, optional): Whether to include llms-full.txt contents in the response.
423
+
424
+
Returns:
425
+
- Generated llms.txt file contents and optionally the llms-full.txt.
0 commit comments