crawlinx-mcp
Server Details
Free technical-SEO audit MCP: crawl a site, run checks, return an LLM-ready shareable report.
- 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.2/5 across 5 of 5 tools scored.
Each tool has a clearly distinct purpose: submit scan (scan_url), retrieve report in JSON or Markdown (get_report, get_report_markdown), drill into an issue (get_issue_detail), and compare scans (diff_scan). No overlapping functionality.
All tool names follow a consistent verb_noun pattern (e.g., scan_url, get_report, diff_scan). Format variants like get_report_markdown are logical extensions, not inconsistencies.
Five tools perfectly cover the SEO auditing workflow: initiating a scan, retrieving results in two formats, expanding issue details, and comparing scans. The count is neither excessive nor minimal.
The tool set covers the essential lifecycle: scan submission, result retrieval in multiple formats, issue detail expansion, and diffing. Missing list_scans or cancel_scan, but these are minor gaps; agents can work with existing tools.
Available Tools
5 toolsdiff_scanAInspect
Diff a scan against the previous scan of the same domain: health movement plus the issue codes that were fixed or newly appeared/regressed. Use this when auditing in a loop to verify fixes landed and nothing regressed.
| Name | Required | Description | Default |
|---|---|---|---|
| scan_id | Yes | The current scan id; the previous scan of the same domain is found automatically. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses that it diffs against the previous scan of the same domain automatically and outputs health movement and issue codes. However, it does not address what happens if no previous scan exists or any potential side effects, which is a gap given no annotations.
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?
Two sentences, first defining the action and output, second giving usage guidance. No unnecessary words, highly efficient.
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?
Covers purpose, usage, and output components. Lacks details on return format and error cases, but for a simple tool with one parameter and no output schema, it is mostly complete.
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% with a single parameter description. The tool description adds no additional parameter semantics beyond what the schema already explains, so baseline score of 3 is appropriate.
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 verb (diff), resource (scan), and specifics (health movement plus issue codes of changes), distinguishing it from siblings like get_issue_detail and get_report.
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?
Explicitly recommends use when auditing in a loop to verify fixes and detect regressions, providing a clear scenario. Does not explicitly exclude other uses or mention alternatives, but the context is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_issue_detailAInspect
Drill into one issue code: every affected URL plus step-by-step remediation (what to change, why, and when it's a false alarm). Call this after get_report_markdown to expand a code from the collapsed table before applying fixes.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | The issue code to expand, e.g. "links.broken_internal" or "title.too_long". | |
| scan_id | Yes | The scan id returned by scan_url. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description discloses key behaviors: returns affected URLs, step-by-step remediation, and mentions handling of false alarms. It does not detail side effects or safety, but the scope is well communicated.
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?
Two concise sentences, first covering purpose and outputs, second providing usage context. No redundant information.
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?
For a simple tool with 2 parameters and no output schema, the description fully answers what, when, and what to expect. No obvious gaps.
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 description coverage is 100%, so baseline is 3. The description adds usage context but no new parameter semantics beyond examples and field names already in the schema.
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 uses a specific verb 'Drill into' and resource 'issue code', lists outputs ('every affected URL plus step-by-step remediation'), and distinguishes from sibling by stating 'Call this after get_report_markdown to expand a code from the collapsed table'.
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?
Explicitly states to call after get_report_markdown and for the purpose of expanding a code before applying fixes. No exclusions or alternatives mentioned, but the sequential context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_reportAInspect
PREFERRED for reasoning about what to fix. Fetch a finished report as structured JSON (health score, category subscores, all issues with URLs, stats). Use this when you need to decide which problems matter.
| Name | Required | Description | Default |
|---|---|---|---|
| scan_id | Yes | The scan id returned by scan_url. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description carries full burden. It explains output format and contents, but does not disclose side effects (likely none, but not stated), prerequisites (scan must be finished), or error behavior. The statement 'finished report' implies state dependency, but this is not fully explicit.
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?
Two sentences with no wasted words. The first sentence hooks with the preferred usage, the second provides details. Information is front-loaded and efficient.
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?
For a simple tool with one parameter and no output schema, the description adequately explains return values (health score, subscores, issues, stats). It mentions 'finished report', setting context. However, it does not cover error cases or handling of non-existent reports.
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% for the single parameter scan_id, so baseline is 3. The description does not add extra meaning beyond the schema's description ('the scan id returned by scan_url'). No additional format, constraints, or examples.
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 it fetches a finished report as structured JSON, listing specific contents (health score, category subscores, issues, stats). The verb 'fetch' and resource 'finished report' are precise. It distinguishes from sibling get_report_markdown by specifying JSON format and purpose (reasoning about what to fix).
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 explicitly positions this tool as 'PREFERRED for reasoning about what to fix' and instructs to use it when deciding which problems matter. However, it does not explicitly state when not to use it or mention alternatives beyond implicit contrast with sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_report_markdownAInspect
Fetch a finished report as compact, agent-ready Markdown: health, a prioritized fix plan with remediation, and issues collapsed to one row per code (code | severity | count | example URLs) — small enough to keep in context on a real site. Set full=true for the complete human report (large). Use get_issue_detail to expand any single code.
| Name | Required | Description | Default |
|---|---|---|---|
| full | No | When true, return the full human report (all occurrences, checks coverage). Default false = compact agent view. | |
| domain | No | Optional domain label for the report heading. | |
| scan_id | Yes | The scan id returned by scan_url. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description bears full burden. It reveals that output is Markdown, compact by default, and includes a data format note. Yet, it omits handling of unfinished reports, error states, or potential side effects.
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?
Two tightly written sentences with no redundancy. First sentence covers purpose and output format; second provides usage guidance and sibling reference. Information is front-loaded and efficient.
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?
The description is thorough for a tool without output schema: it details what the Markdown contains (health, fix plan, collapsed issues) and explains the full parameter. It also points to a sibling for further expansion. Lacks info on default behavior of domain or error handling.
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?
All three parameters are described in the schema (100% coverage). The description adds value by explaining the effect of full (compact vs large human report) and the purpose of scan_id (from scan_url). This enriches the schema definitions.
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 fetches a finished report as compact Markdown, specifying content: health, fix plan, collapsed issues. It distinguishes from sibling get_issue_detail by directing to use that for expanding individual codes.
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 advises when to use the compact view vs full (full=true) and references get_issue_detail for deeper detail. However, it does not explicitly compare to get_report or diff_scan, or state when not to use the tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
scan_urlAInspect
Submit a URL to Crawlinx for an SEO audit. Crawls up to max_pages pages (default 50, max 200), runs the technical-SEO checks, and returns a scan id; poll get_report / get_report_markdown until the crawl finishes.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The absolute http(s) URL to audit. | |
| mode | No | Scan mode: "free" (default, multi-page) or "instant" (single-page quick check). | |
| max_pages | No | How many pages to crawl. Default 50; maximum 200. Ignored for mode=instant. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Describes async behavior, crawl limits (max_pages, default/max), and that it returns a scan id. While no annotations exist, the description adequately conveys non-blocking nature and scope. Could mention if any destructive actions occur, but likely none.
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?
Two sentences, front-loaded with purpose, then operational details. Every sentence serves a purpose; no fluff.
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?
Covers input, behavior, and output (scan id) with guidance on polling. No output schema, but description explains what to do next. Could briefly mention sibling tools for completeness, but not required.
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%, but description adds value: default values (max_pages=50, max=200), explanation of mode (free vs instant), and behavior for max_pages when mode=instant. Goes beyond schema.
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?
Clearly states the tool submits a URL for an SEO audit, specifying the action (submit/audit), resource (URL), and outcome (scan id). Distinguishes from sibling tools like get_report which retrieve results.
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?
Provides clear usage context: submit URL, then poll get_report/get_report_markdown for results. However, does not explicitly state when not to use this tool versus alternatives like diff_scan.
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
👋 Maintainer here. Crawlinx is a free, no-signup technical-SEO audit crawler exposed over MCP — point it at any URL and get a health score, a prioritized list of fixes, and a shareable report link. What's different: it runs a real browser engine, so it renders JavaScript and gets past most bot-walls. That means it sees a page the way Googlebot — and AI crawlers like GPTBot/ClaudeBot, which mostly skip JS — actually see it, not the raw HTML most crawlers get. 156 checks, including 2026-era ones others skip: structured-data deprecations, AI-bot accessibility, and agent-readiness. Quick start (Claude Code): claude mcp add --transport http crawlinx https://crawlinx.com/mcp Typical flow: scan_url (start an audit, returns a scan id) → get_report_markdown / get_report → get_issue_detail (expand one issue) → diff_scan (after fixing, confirm it landed and nothing regressed). No API key, no signup, nothing to install. Feedback and check requests very welcome!