SitemapKit
SitemapKit is an API and MCP server that discovers and extracts sitemaps from any website. Developers and AI agents use it to get the full URL list of any domain instantly — useful for SEO audits, web crawling, content indexing, and AI workflows.
SitemapKit MCP Server
Model Context Protocol (MCP) server for SitemapKit. Lets any MCP-compatible AI assistant (Claude, Cursor, Windsurf, etc.) discover and extract sitemaps from any website.
Tools
| Tool | Description |
|---|---|
discover_sitemaps | Find all sitemap files for a domain (checks robots.txt, common paths, sitemap indexes) |
extract_sitemap | Extract all URLs from a specific sitemap file |
full_crawl | Discover + 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": ["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": ["sitemapkit-mcp"],
"env": {
"SITEMAPKIT_API_KEY": "your-api-key-here"
}
}
}
}
Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"sitemapkit": {
"command": "npx",
"args": ["sitemapkit-mcp"],
"env": {
"SITEMAPKIT_API_KEY": "your-api-key-here"
}
}
}
}
Usage examples
Once configured, you can ask your AI assistant:
- "Find all sitemaps for stripe.com"
- "Extract every URL from https://example.com/sitemap.xml"
- "Get the full URL list for shopify.com, up to 5000 URLs"
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.
Free plan: 20 requests/month Starter: 500 requests/month Pro: 2000 requests/month
License
MIT
Verwandte Server
Scout Monitoring MCP
SponsorPut performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
SponsorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
Lisply-MCP
A Node.js middleware that allows AI agents to interact with Lisp-based systems using the Lisply protocol.
MCP Gateway
Integrates multiple MCP servers into a single interface with a management Web UI and real-time status updates.
Muster
A universal control plane for managing MCP servers and providing intelligent tool discovery for AI agents.
Bitcoin & Lightning Network
Interact with the Bitcoin and Lightning Network to generate keys, validate addresses, decode transactions, and query the blockchain.
Remote MCP Server (Authless)
An example of a remote MCP server deployable on Cloudflare Workers, without authentication.
Chalee MCP RAG
A Retrieval-Augmented Generation (RAG) server for document processing, vector storage, and intelligent Q&A, powered by the Model Context Protocol.
MCP Terminal
An MCP server for accessing the terminal and managing git repositories.
MCP‑Stack
A Docker Compose-based collection of MCP servers for LLM workflows, featuring centralized configuration and management scripts.
ailist-mcp
Search and discover Ai projects from Claude Code. Browse 1,400+ MCP servers, tools, and agents. Submit projects via your Ai agent.
Remote MCP Server on Cloudflare
A template for deploying a remote MCP server on Cloudflare Workers, customizable by defining tools in the source code.