indexnow-toolkit
Server Details
Build and validate IndexNow payloads, check key files, and diff sitemaps into a submission list.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.3/5 across 3 of 3 tools scored.
Each tool has a clearly distinct purpose: building payloads, diffing sitemaps, and validating keys. There is no overlap or ambiguity in their responsibilities.
All tool names follow a consistent verb_noun pattern in snake_case: build_indexnow_payload, diff_sitemaps, validate_indexnow_key. The naming is uniform and predictable.
With only 3 tools, the set is tightly scoped to the IndexNow workflow. Each tool earns its place and the count is appropriate for the server's purpose.
The toolkit covers the essential IndexNow steps: key validation, URL discovery via sitemap diffing, and payload generation. Submission is handled externally via the generated curl command, which is a reasonable boundary. No significant gaps are apparent.
Available Tools
3 toolsbuild_indexnow_payloadBuild an IndexNow POST bodyAInspect
Validates a key and URL list against the IndexNow spec and returns the exact JSON POST body, the endpoint, a ready-to-run curl command, and the reason for every URL it dropped. Enforces the same-host rule, the 10000-URL batch limit, https/http consistency, fragment stripping and de-duplication.
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | The IndexNow key, 8-128 characters of [a-zA-Z0-9-]. | |
| host | No | The host, e.g. example.com. Inferred from the first URL if omitted. | |
| engine | No | indexnow (default), bing, yandex, seznam or naver. | |
| urlList | Yes | Absolute URLs to submit. All must be on the same host. | |
| keyLocation | No | Optional URL of the key file if it is not at https://host/<key>.txt. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and does well: it discloses that URLs are validated, that specific rules are enforced (same-host, 10000 limit, https/http consistency, fragment stripping, de-duplication), and that it returns reasons for dropped URLs. It does not explicitly mention error behavior for invalid keys, but 'validates' implies this, making the transparency strong.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, each dense with distinct information: the first covers purpose and outputs, the second lists enforcement rules. There is no fluff or redundancy, and it is front-loaded with the tool's core function.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 5 parameters, no output schema, and moderate complexity, the description is quite complete: it explains what is returned (body, endpoint, curl, dropped URL reasons) and the validation rules applied. It could clarify what happens on invalid key or non-URL inputs, but overall it provides enough context for an agent to select and use the tool effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already covers all parameters with descriptions (100% coverage), so baseline is 3. The description adds meaning by introducing constraints not present in the schema: the 10000-URL batch limit, https/http consistency, fragment stripping, and de-duplication, which notably apply to the urlList parameter. This enriches the agent's understanding of parameter validation expectations.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('validates' and 'returns'), the resource (IndexNow POST body), and the concrete outputs (JSON body, endpoint, curl command, dropped URL reasons). It distinguishes itself from the sibling validate_indexnow_key tool by focusing on building a payload and validating both key and URL list, not just the key.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The usage is implied by the tool's name and description (build a payload, validate key/URLs), but there is no explicit mention of when to use this tool over validate_indexnow_key or diff_sitemaps. No alternatives are named or excluded, so the agent receives no direct comparative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
diff_sitemapsDiff two sitemaps into an IndexNow listAInspect
Parses two sitemap documents (urlset XML, sitemapindex XML, or a newline-delimited URL list) and reports added, removed and lastmod-changed URLs. Returns only the URLs worth submitting to IndexNow. Pass a key to also get the finished, validated POST body.
| Name | Required | Description | Default |
|---|---|---|---|
| key | No | Optional IndexNow key; supplying it returns a ready-to-send payload. | |
| engine | No | Optional target endpoint name. | |
| keyLocation | No | Optional key file URL. | |
| current_sitemap | Yes | The current sitemap document. | |
| include_removed | No | Include removed URLs in the submission list. Default false. | |
| previous_sitemap | Yes | The earlier sitemap document. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the transparency burden. It discloses accepted input formats, the diff logic (added, removed, lastmod-changed), the filtering to relevant URLs, and the optional key-driven POST body. This is sufficient for a read-only analysis tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is exactly two sentences, front-loaded with the main verb and object, and every clause adds value. No filler or repetition of schema details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given moderate complexity (6 params, no output schema), the description adequately covers inputs, processing, and output categories. It doesn't specify the exact return format, but the phrase 'reports added, removed and lastmod-changed URLs' gives enough guidance for an agent to interpret results.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds meaning beyond the schema by specifying the document formats for previous_sitemap/current_sitemap and explaining that the key can yield a 'finished, validated POST body.' This adds useful context to the parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action: 'Parses two sitemap documents' and 'reports added, removed and lastmod-changed URLs.' It also names the output scope ('URLs worth submitting to IndexNow'), distinguishing this tool from siblings that build or validate messages.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description makes the primary use case explicit: diff two sitemaps to produce a submission list. It doesn't explicitly mention when to choose build_indexnow_payload or validate_indexnow_key, but the context implies the workflow, so there's no exclusion gap.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate_indexnow_keyValidate an IndexNow keyAInspect
Checks an IndexNow key against the protocol schema (length, character set) and, given a host, returns the exact URL the key file must be served from, the exact contents it must have, and the curl command to verify it. Most 403 rejections are a key file that returns an HTML 404 page with a 200 status.
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | The key to check. | |
| host | No | Optional host, e.g. example.com, to compute the key file URL. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses that the tool computes and returns the key file URL, contents, and curl command, implying it does not itself fetch the file. It also adds a useful diagnostic heuristic about 403 errors. However, it does not explicitly state whether the operation is read-only or if any external calls are made, leaving a small gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no fluff. The first sentence front-loads the primary purpose and outputs, while the second sentence adds a practical, non-essential troubleshooting tip. Every word earns its place; it is concise yet comprehensive.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Without an output schema, the description clearly explains the return values (exact URL, contents, curl command). It also gives a real-world context with the 403 error note. It could be slightly more explicit about edge cases (e.g., behavior when host is omitted) but is generally complete for this tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema descriptions are minimal ('The key to check', 'Optional host... to compute the key file URL'), but the main description adds meaning by explaining the relationship between host and the computed key file URL. This goes beyond the schema alone, making the parameter purposes clearer.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Checks an IndexNow key against the protocol schema (length, character set)' and also describes the additional outputs (exact URL, contents, curl command). This specific verb+resource combination distinguishes it from sibling tools like build_indexnow_payload and diff_sitemaps.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context on when the tool is relevant, especially the 403 rejection troubleshooting hint: 'Most 403 rejections are a key file that returns an HTML 404 page with a 200 status.' While it implies usage (validating keys and getting verification steps), it does not explicitly name alternatives or state when not to use it, so it falls slightly short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityCmaintenanceSubmit URLs for instant indexing via IndexNow and Google Indexing APILast updated6281MIT
- FlicenseAqualityDmaintenanceEnables submitting URLs to the Rapid URL Indexer API, tracking submissions across projects, and auto-detecting new pages from sitemaps.Last updated8
- Flicense-qualityBmaintenanceEnables programmatic management of Google Search Console properties and IndexNow URL submission for search indexing.Last updated
- AlicenseBqualityBmaintenanceCombines Bing Webmaster data, GA4 AI-traffic opportunity matching, technical SEO scanning, AI-search content audits, approval-gated WordPress fix preparation, live verification, Bing URL submission, and IndexNow integration to help marketers improve pages for human readers and AI search.Last updated461MIT