Skip to main content
Glama
bicibg

Apixies MCP Server

by bicibg

parse_sitemap

Read-only

Fetch and parse sitemap.xml files to extract URLs with lastmod, changefreq, and priority metadata. Supports sitemap index files for SEO audits and content discovery.

Instructions

Fetch and parse a sitemap.xml file. Returns all URLs with lastmod, changefreq, and priority metadata. Can follow sitemap index files. Useful for SEO audits and content discovery.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesURL of the sitemap (e.g., "https://example.com/sitemap.xml")
limitNoMax URLs to return (default: 100, max: 1000)
follow_indexNoFollow and parse child sitemaps in a sitemap index (default: false)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.4.2

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and openWorldHint=true, covering safety and external access. The description adds specific behavior: following sitemap index files and returning metadata. It does not contradict annotations and provides useful context beyond the structured data.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, front-loaded with the action and outcome. No unnecessary words, each sentence earns its place. It is efficient and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description explains what it returns and mentions following index files, but it does not specify the response structure (e.g., JSON array/object) and has the misleading 'all URLs' claim. Given no output schema, more detail on format and limit behavior would help. Adequate but with gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. However, the description says 'Returns all URLs' which contradicts the limit parameter that caps results. This misleadingly misrepresents the effect of limit, actually detracting from parameter understanding. The description adds negative value here.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Fetch and parse') and resource ('sitemap.xml'), states what it returns (URLs with metadata), and mentions ability to follow index files. It clearly distinguishes from sibling tools like parse_robots_txt by focusing on sitemap handling.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides a use case ('Useful for SEO audits and content discovery') which gives context, but it does not explicitly contrast with alternatives or state when not to use it. The guidance is implied rather than explicit, leaving room for ambiguity about selection vs. other parsing tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.