Network
Génère un llms.txt (format v2 llmstxt.org : H1, résumé en citation, listes H2) depuis une exploration en direct ou un inventaire collé, et audite la politique robots.txt pour GPTBot, ClaudeBot, PerplexityBot et Bytespider selon l'algorithme RFC 9309 — avec aperçu allow/block et directives prêtes à coller.
Appelez cet outil depuis votre code en trois langages.
curl -X POST 'http://127.0.0.1:3003/fr/api/tools/llms-txt-and-ai-crawler-audit' \
-H 'Content-Type: application/json' \
-d '{"siteUrl":"https://example.com — homepage links, plus sitemap.xml fallback for JS-rendered sites (max 25 pages)","pagesInput":"\nhttps://example.com/docs/quickstart | Quickstart | Install the CLI and run your first job\nhttps://example.com/docs/api | API Reference | Endpoint catalog with auth examples\nhttps://example.com/blog/cli-tips | CLI Tips | Twenty shortcuts for daily use\nhttps://example.com/blog/release-2026 | Release 2026 | What changed this quarter","robotsInput":"User-agent: GPTBot\nDisallow: /\n\nUser-agent: ClaudeBot\nDisallow:\n\nUser-agent: *\nDisallow: /private/","siteName":"Example Platform Docs","summary":"Example Platform lets teams ship scheduled data jobs without infrastructure.","extraNotes":"All endpoints require an API key; the quickstart covers sandbox setup.","grouping":"auto"}'Envoyez une requête POST avec vos entrées en JSON. Les paramètres de type fichier nécessitent un upload préalable.
POST http://127.0.0.1:3003/fr/api/tools/llms-txt-and-ai-crawler-audit| Nom | Type | Requis | Description |
|---|---|---|---|
| siteUrl | text | Non | — |
| pagesInput | textarea | Non | — |
| robotsInput | textarea | Non | — |
| siteName | text | Non | — |
| summary | text | Non | — |
| extraNotes | textarea | Non | — |
| grouping | select | Oui | — |
Résultat HTML
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Ajoutez cet outil à votre serveur Model Context Protocol pour que les agents IA puissent le lister et l'appeler.
Ajoutez ce bloc à la configuration de votre client MCP :
{
"mcpServers": {
"elysiatools-llms-txt-and-ai-crawler-audit": {
"name": "llms-txt-and-ai-crawler-audit",
"description": "Génère un llms.txt (format v2 llmstxt.org : H1, résumé en citation, listes H2) depuis une exploration en direct ou un inventaire collé, et audite la politique robots.txt pour GPTBot, ClaudeBot, PerplexityBot et Bytespider selon l'algorithme RFC 9309 — avec aperçu allow/block et directives prêtes à coller.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=llms-txt-and-ai-crawler-audit",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Après connexion au point d'accès SSE, listez les outils exposés :
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Appelez l'outil par son id ; les arguments sont construits à partir de ses paramètres :
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "llms-txt-and-ai-crawler-audit",
"arguments": {
"siteUrl": "https://example.com — homepage links, plus sitemap.xml fallback for JS-rendered sites (max 25 pages)",
"pagesInput": "\nhttps://example.com/docs/quickstart | Quickstart | Install the CLI and run your first job\nhttps://example.com/docs/api | API Reference | Endpoint catalog with auth examples\nhttps://example.com/blog/cli-tips | CLI Tips | Twenty shortcuts for daily use\nhttps://example.com/blog/release-2026 | Release 2026 | What changed this quarter",
"robotsInput": "User-agent: GPTBot\nDisallow: /\n\nUser-agent: ClaudeBot\nDisallow:\n\nUser-agent: *\nDisallow: /private/",
"siteName": "Example Platform Docs",
"summary": "Example Platform lets teams ship scheduled data jobs without infrastructure.",
"extraNotes": "All endpoints require an API key; the quickstart covers sandbox setup.",
"grouping": "auto"
}
}
}Des questions ou un problème ? Contactez [email protected]