Robots Txt Generator

Seo REST API MCP

Return a robots.txt file built from user-agent rules (allow, disallow, crawl-delay), sitemap URLs and an optional Host directive, or from a preset: allow-all, block-all, wordpress, ecommerce.

This page documents the HTTP endpoint POST /api/tools/robots-txt-generator/execute. See the MCP reference →

Call it over REST

POST https://api.findutils.com/api/tools/robots-txt-generator/execute · no API keys · 60 requests/min per IP

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/robots-txt-generator/execute \
  -H "Content-Type: application/json" \
  -d '{
    "preset": "allow-all",
    "sitemaps": [
      "https://example.com/sitemap.xml"
    ],
    "include_comments": false
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/robots-txt-generator

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
rules array no Rule groups: objects with user_agent (e.g. "*", "Googlebot", "GPTBot"), allow (array of paths), disallow (array of paths), crawl_delay (seconds). Overrides preset.
preset string (allow-all | block-all | wordpress | ecommerce) no Starting rule set when rules is omitted. Default: "allow-all".
sitemaps array no Absolute sitemap URLs.
host string no Optional Host directive value (Yandex), e.g. "https://example.com".
include_comments boolean no Prepend the generator comment header with the date. Default: true.

Example arguments (verified)

{
  "preset": "allow-all",
  "sitemaps": [
    "https://example.com/sitemap.xml"
  ],
  "include_comments": false
}

Also an MCP tool

Claude, Cursor, and any MCP client can call this tool as findutils:robots_txt_generator after one connect command.

Connect once

claude mcp add findutils --transport http https://mcp.findutils.com/
Open the MCP reference for Robots Txt Generator →

More Seo tools