SitemapKit Sitemap Discovery
Finds a domain's sitemaps and extracts every page URL via the SitemapKit MCP server.
Marketing & SEOBeginner★ 416⑂ 43AI score 8/10Last updated: Sep 3, 2026
What it does
- Discovers all sitemap files for a domain by checking robots.txt, common paths and sitemap indexes.
- Extracts URL lists with lastmod dates from a specific sitemap URL.
- Runs a single
full_crawlto return every page URL across all sitemaps. - Handles operational details: warns on
truncatedresults, checks remaining quota, and translates Unauthorized / quota-exceeded / rate-limit errors into clear next steps. - Explicitly states the tools are on-demand (no background monitors) and points to SitemapKit Monitoring for change detection and webhooks.
Who it's for
- SEO and marketing folks auditing competitor site structure
- Site owners building content inventories or redirect maps
- Developers who need a seed URL list for crawling or testing
Examples
- "What pages does stripe.com have?" →
full_crawland report the URL list plus total count - "Find all sitemaps for shopify.com" →
discover_sitemapsand show each sitemap with its discovery source - "Extract https://example.com/sitemap-posts.xml" →
extract_sitemapand list URLs with lastmod dates
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/aiskillstore/marketplace/HEAD/pending/0nl1n1n/sitemapkit/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the pending/0nl1n1n/sitemapkit folder from the GitHub repo aiskillstore/marketplace into my ~/.claude/skills/sitemapkit/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/aiskillstore/marketplace.git /tmp/aiskillstore && mkdir -p ~/.claude/skills/sitemapkit && cp -r /tmp/aiskillstore/pending/0nl1n1n/sitemapkit/* ~/.claude/skills/sitemapkit/⚠ This is a third-party skill. Check the source repository before installing.
- Clone the repo:
git clone https://github.com/aiskillstore/marketplace.git /tmp/aiskillstore - Create the skill folder:
mkdir -p ~/.claude/skills/sitemapkit - Copy the files:
cp -r /tmp/aiskillstore/pending/0nl1n1n/sitemapkit/* ~/.claude/skills/sitemapkit/ - Get an API key at https://app.sitemapkit.com/settings/api
- Add the
sitemapkitMCP server to your Claude Code MCP config and set theSITEMAPKIT_API_KEYenvironment variable to your key. - Restart Claude Code and test with: "list all pages on example.com".