SitemapKit

SitemapKit — это API и MCP-сервер, который обнаруживает и извлекает карты сайтов с любого веб-сайта. Разработчики и AI-агенты используют его для мгновенного получения полного списка URL-адресов любого домена — полезно для SEO-аудитов, веб-сканирования, индексации контента и AI-процессов.

Документация

SitemapKit MCP Server

Give AI agents a reliable XML sitemap crawler through the Model Context Protocol (MCP). SitemapKit discovers sitemap files, parses nested sitemap indexes, and extracts deduplicated page URLs for SEO audits, content inventories, research, and agent workflows.

Works with MCP-compatible clients including Claude Desktop, Cursor, Windsurf, and other AI assistants that support local stdio servers.

Tools

ToolDescription
discover_sitemapsFind all sitemap files for a domain (checks robots.txt, common paths, sitemap indexes)
extract_sitemapExtract all URLs from a specific sitemap file
full_crawlDiscover + extract all URLs across all sitemaps in one call

Setup

1. Get an API key

Sign up at sitemapkit.com and grab your API key from app.sitemapkit.com/settings/api.

2. Configure your MCP client

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "sitemapkit": {
      "command": "npx",
      "args": ["-y", "sitemapkit-mcp"],
      "env": {
        "SITEMAPKIT_API_KEY": "your-api-key-here"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project (or the global ~/.cursor/mcp.json):

{
  "mcpServers": {
    "sitemapkit": {
      "command": "npx",
      "args": ["-y", "sitemapkit-mcp"],
      "env": {
        "SITEMAPKIT_API_KEY": "your-api-key-here"
      }
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "sitemapkit": {
      "command": "npx",
      "args": ["-y", "sitemapkit-mcp"],
      "env": {
        "SITEMAPKIT_API_KEY": "your-api-key-here"
      }
    }
  }
}

Usage examples

Once configured, you can ask your AI assistant:

Continuous sitemap monitoring

This MCP server is designed for on-demand discovery and extraction. To watch a website continuously, detect newly published pages, and send signed webhook alerts, use SitemapKit Monitoring.

The free plan includes one daily monitor. Paid plans add more websites, higher URL limits, and checks as often as every hour. See the webhook documentation for payloads, signatures, and retry behavior.

API limits

Limits depend on your SitemapKit plan. The meta.quota field in each response tells you how many requests you have remaining this month.

PlanAPI requests/monthURLs per extraction
Free1001,000
Starter5,00010,000
Pro50,00050,000

See current API and monitoring allowances on the pricing page.

License

MIT