Network
Gera um llms.txt (formato v2 do llmstxt.org: H1, resumo em citação, listas H2) a partir de um rastreamento ao vivo ou inventário colado, e audita a política de robots.txt para GPTBot, ClaudeBot, PerplexityBot e Bytespider pelo algoritmo RFC 9309 — com prévia allow/block e diretivas prontas para colar.
Chame esta ferramenta a partir do seu código em três idiomas.
curl -X POST 'http://127.0.0.1:3003/pt/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"}'Envie uma requisição POST com suas entradas em JSON. Parâmetros do tipo arquivo exigem upload prévio.
POST http://127.0.0.1:3003/pt/api/tools/llms-txt-and-ai-crawler-audit| Nome | Tipo | Obrigatório | Descrição |
|---|---|---|---|
| siteUrl | text | Não | — |
| pagesInput | textarea | Não | — |
| robotsInput | textarea | Não | — |
| siteName | text | Não | — |
| summary | text | Não | — |
| extraNotes | textarea | Não | — |
| grouping | select | Sim | — |
Resultado HTML
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Adicione esta ferramenta ao seu servidor Model Context Protocol para que agentes de IA possam listá-la e chamá-la.
Adicione este bloco à configuração do seu cliente MCP:
{
"mcpServers": {
"elysiatools-llms-txt-and-ai-crawler-audit": {
"name": "llms-txt-and-ai-crawler-audit",
"description": "Gera um llms.txt (formato v2 do llmstxt.org: H1, resumo em citação, listas H2) a partir de um rastreamento ao vivo ou inventário colado, e audita a política de robots.txt para GPTBot, ClaudeBot, PerplexityBot e Bytespider pelo algoritmo RFC 9309 — com prévia allow/block e diretivas prontas para colar.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=llms-txt-and-ai-crawler-audit",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Após conectar ao endpoint SSE, liste as ferramentas expostas:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoque a ferramenta pelo seu id; os argumentos são construídos a partir de seus parâmetros:
{
"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"
}
}
}Dúvidas ou problemas? Contate [email protected]