Skip to main content
Glama
sikulovi-s-r-o

seoradar-mcp

mcp-server-seoradar

MCP server for SEO Radar — run SEO audits and manage URL monitoring from any MCP-compatible AI client.

Prerequisites

Related MCP server: OctoBoost SEO MCP Server

Quick install

Add to your MCP client config:

{
  "mcpServers": {
    "seoradar": {
      "command": "npx",
      "args": ["-y", "mcp-server-seoradar"],
      "env": { "SEORADAR_API_KEY": "sr_live_your_key_here" }
    }
  }
}

Setup

Claude Code

claude mcp add seoradar -e SEORADAR_API_KEY=sr_live_your_key -- npx -y mcp-server-seoradar

Claude Desktop

Config file: ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "seoradar": {
      "command": "npx",
      "args": ["-y", "mcp-server-seoradar"],
      "env": { "SEORADAR_API_KEY": "sr_live_your_key_here" }
    }
  }
}

Cursor

Config file: ~/.cursor/mcp.json

{
  "mcpServers": {
    "seoradar": {
      "command": "npx",
      "args": ["-y", "mcp-server-seoradar"],
      "env": { "SEORADAR_API_KEY": "sr_live_your_key_here" }
    }
  }
}

VS Code

Config file: ~/.vscode/mcp.json (or workspace .vscode/mcp.json)

{
  "servers": {
    "seoradar": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "mcp-server-seoradar"],
      "env": { "SEORADAR_API_KEY": "sr_live_your_key_here" }
    }
  }
}

Available tools

Tool

Input

Purpose

seo_audit

{ url }

Run an audit, return score + summary

get_audit_results

{ hash }

Full per-check report

check_api_usage

Quota: tier/limit/used/remaining

list_monitored_urls

List watched URLs + status

add_monitored_url

{ url, label?, cadence? }

Add a URL to monitoring

get_monitoring_status

{ id }

One URL's latest status

remove_monitored_url

{ id }

Stop watching a URL

Usage examples

Run an SEO audit on https://example.com
What are the detailed results for audit hash abc123?
How many audits do I have left today?
Show me all my monitored URLs
Add https://example.com to monitoring with label "Homepage" checked daily
What's the latest status of monitored URL 42?
Remove monitored URL 42

Development

npm install       # install dependencies
npm run build     # compile TypeScript → dist/
npm test          # run vitest tests
npm run lint      # eslint src/

Configuration

Variable

Required

Default

Description

SEORADAR_API_KEY

Yes

Your sr_live_ API key from seoradar.cz

SEORADAR_API_URL

No

https://seoradar.cz/api/v1

API base URL (override for staging)

Error handling

All tools return structured error messages. Common cases:

  • 401 — invalid or missing API key

  • 404 — audit hash or monitored URL ID not found

  • 422 — invalid URL format or unsupported cadence value

  • 429 — rate limit or daily quota exceeded

  • 5xx — SEO Radar API temporarily unavailable

Polling tools (seo_audit) retry automatically for up to ~90 s before returning a timeout error.

Security

The API key is passed via environment variable and never logged or included in responses. Store your key in your OS keychain or a secrets manager — never commit it to source control.

License

MIT — see LICENSE.

Available Tools

7 tools
add_monitored_urlAdd Monitored URLA

Add a URL to SEO monitoring. It will be re-audited on a schedule and you get alerts on regressions.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesFull URL including protocol
labelNoOptional friendly name; defaults to the host
cadenceNoCheck frequency; defaults to daily

TDQS

A4.2/5.0
Behavior4/5

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

With readOnlyHint=false indicating a mutation, the description adds useful behavioral context: the URL will be re-audited on a schedule and alerts on regressions will be sent. This goes beyond the annotation and gives the agent insight into the tool's ongoing effect.

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?

The description is two concise sentences that earn their place: the first states the core operation, the second explains the scheduling and alerts. No fluff or redundancy.

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

Completeness4/5

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

For a simple add operation with a well-documented schema and readOnly annotation, the description adequately explains the purpose and the ongoing behavior. It lacks only minor details like duplicate handling, but these are not essential for the agent to select and invoke the tool correctly.

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

Parameters3/5

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

Schema description coverage is 100%, so the baseline is 3. The description itself does not add additional parameter-level detail beyond what the schema already provides; it only reiterates the concept of adding a URL.

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 and resource: 'Add a URL to SEO monitoring.' It clearly distinguishes this from sibling tools like list_monitored_urls or remove_monitored_url, and adds value by noting the scheduled re-audits and regression alerts, making the purpose unmistakable.

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

Usage Guidelines4/5

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

The description implies when to use this tool: when you want to start monitoring a URL. It differentiates from one-time audit tools like seo_audit by mentioning ongoing schedule and alerts. However, it does not explicitly state exclusions or alternatives, so it falls 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.

check_api_usageAPI UsageA
Read-only

Check your SEO Radar API quota — tier, daily limit, used today, and remaining count.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior4/5

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

The description adds value beyond the readOnlyHint annotation by specifying the exact quota information provided (tier, daily limit, used today, remaining count). This gives the agent a clear picture of what to expect without contradicting the read-only annotation.

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?

The description is a single, efficient sentence that front-loads the action and immediately lists expected outputs. It contains no fluff or redundancy.

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

Completeness5/5

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

With no parameters and a read-only annotation, the description provides the key information an agent needs: what the tool checks and what metrics it returns. It is appropriately complete for a simple quota-checking tool, even without an output schema.

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

Parameters4/5

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

The tool takes zero parameters, so the description does not need to clarify parameter semantics. The description's focus on the return metrics directly addresses what the agent will receive, which is sufficient given the absence of parameters.

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 the specific verb 'Check' and clearly identifies the resource (SEO Radar API quota) and the specific metrics returned (tier, daily limit, used today, remaining count). This distinguishes it from sibling tools like seo_audit or add_monitored_url, which focus on audits and URL monitoring.

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

Usage Guidelines4/5

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

The description implies use whenever you need to monitor API quota, and the tool is clearly distinct from siblings. However, it does not explicitly mention alternatives or exclusion conditions, so it does not reach the highest bar for usage guidance.

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

get_audit_resultsGet Audit ResultsA
Read-only

Get the full detailed SEO audit report by hash: every check with pass/warn/fail status, messages, recommendations, and tips.

ParametersJSON Schema
NameRequiredDescriptionDefault
hashYesAudit hash from a previous seo_audit call

TDQS

A4.3/5.0
Behavior4/5

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

Annotations declare readOnlyHint=true, and the description adds meaningful behavioral detail by specifying the return content (pass/warn/fail statuses, messages, recommendations, tips). It does not discuss side effects or edge cases, but none are expected for a read-only fetch with a single required parameter.

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?

The description is a single, front-loaded sentence that immediately states the tool's purpose and then expands on the output. No wasted words or repetition beyond the necessary.

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

Completeness5/5

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

Given the simplicity (one required parameter), the presence of readOnly annotations, and the detailed description of the report contents, the description is complete enough for an agent to successfully invoke the tool and understand what it returns. No output schema exists, but the description fills that gap.

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

Parameters3/5

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

The schema already fully documents the 'hash' parameter with the description 'Audit hash from a previous seo_audit call' (100% coverage). The tool description only repeats 'by hash' without adding new syntax or format details, so the baseline of 3 applies.

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 clearly states the tool gets a full detailed SEO audit report by hash, enumerating the contents (check statuses, messages, recommendations, tips). It distinguishes itself from sibling tools like seo_audit (which presumably creates audits) by focusing on retrieval of existing results.

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

Usage Guidelines4/5

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

The description implies when to use this tool: after a seo_audit call, using the returned hash. It does not explicitly name alternatives or exclusions, but the context is clear enough for an agent to select it for retrieving audit results.

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

get_monitoring_statusGet Monitoring StatusA
Read-only

Get the latest monitoring status and score for one monitored URL by its id.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesMonitored URL id (from list_monitored_urls)

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the read-only nature is covered. The description adds 'latest' status and score, but no further details on response structure or edge cases are provided.

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?

The description is a single concise sentence, immediately stating the action and scope. No redundant wording or unnecessary detail.

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

Completeness4/5

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

For a simple read tool with one well-documented parameter, the description is reasonably complete, mentioning the return content (status and score). Since no output schema exists, a bit more detail on return format could be useful, but the simplicity justifies this score.

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

Parameters3/5

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

The input schema has 100% coverage with a descriptive parameter ('Monitored URL id (from list_monitored_urls)'), so the description adds no extra semantic value beyond what the schema already provides.

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 clearly states 'get the latest monitoring status and score for one monitored URL by its id', using a specific verb and resource. This distinguishes it from siblings like list_monitored_urls (listing) and add/remove operations.

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

Usage Guidelines4/5

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

The description clarifies it is for a single monitored URL by its id, providing clear context for when to use it. However, it does not explicitly mention alternatives or exclusions, though the sibling list implies the distinction.

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

list_monitored_urlsList Monitored URLsA
Read-only

List all URLs you have under SEO monitoring, with each one's latest status and score.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior3/5

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

The readOnlyHint annotation already declares this is a safe read operation. The description adds that it returns each URL's 'latest status and score,' which is useful. However, it does not mention potential limitations like pagination, rate limits, or ordering. Since annotations cover the safety profile, a score of 3 is appropriate for the added context.

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?

The description is a single sentence that is front-loaded and efficient. It states the action, resource, and returned data without any filler or repetition. Every word earns its place.

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

Completeness5/5

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

For a simple list tool with zero parameters and no output schema, the description is complete. It tells the user exactly what it does and what information is included (status and score). The readOnlyHint annotation provides safety context, and the tool's scope is fully covered.

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

Parameters4/5

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

The tool has zero parameters, so the baseline for this dimension is 4. The description does not need to explain parameters, and the schema is empty. The description adds relevant context about what is returned, which is sufficient.

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 clearly states a specific action ('List all URLs') and the resource ('URLs you have under SEO monitoring'), and specifies what is included ('latest status and score'). It distinguishes itself from sibling tools like add_monitored_url/remove_monitored_url by focusing on listing, and from get_audit_results by focusing on monitored URLs rather than audit results.

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

Usage Guidelines4/5

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

The description provides clear context for when to use this tool: when you want to see all monitored URLs and their status/score. It does not explicitly mention alternatives or exclusions, but the purpose is self-evident and distinct from siblings, so it earns a 4 rather than a 3.

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

remove_monitored_urlRemove Monitored URLA

Remove a URL from SEO monitoring by its id.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesMonitored URL id (from list_monitored_urls)

TDQS

A4/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=false, so the agent knows this is a mutation. The description adds no extra context about permanence, side effects, or error behavior beyond the basic removal action. It is consistent with annotations but not richer.

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?

A single sentence with no filler. It is front-loaded with the verb and resource, making it immediately understandable.

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

Completeness4/5

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

For a simple one-parameter deletion tool, the description plus schema and annotations provide sufficient context. The lack of an output schema is not critical, but it could have mentioned what happens after removal (e.g., permanent deletion) for full clarity.

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

Parameters3/5

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

Schema description coverage is 100% and the parameter 'id' already explains its origin ('from list_monitored_urls'). The description only says 'by its id', adding no meaning beyond what the schema provides, so the baseline of 3 applies.

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 clearly states the action ('Remove'), the target resource ('a URL from SEO monitoring'), and the method ('by its id'). It is specific and distinguishes itself from siblings like add_monitored_url and list_monitored_urls.

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

Usage Guidelines4/5

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

The description implies usage as the inverse of adding a URL, and the schema parameter description ('from list_monitored_urls') provides prerequisite context. However, it does not explicitly state when to use this over alternatives or mention any exclusions, but there are no alternative removal tools.

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

seo_auditSEO AuditA
Read-only

Run a comprehensive SEO audit on any URL. Returns overall score (0-100), category scores, and an AI summary. Cached results return instantly; new URLs take 10-30s (polling handled automatically). Use get_audit_results with the returned hash for the full per-check breakdown.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesFull URL including protocol, e.g. https://example.com

TDQS

A4.7/5.0
Behavior5/5

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

The description adds meaningful behavioral context beyond the annotations: cached results return instantly, new URLs take 10-30s with automatic polling, and the return includes an overall score, category scores, and an AI summary. This is valuable performance and outcome information not present in the readOnlyHint/openWorldHint annotations. No contradiction.

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?

The description is three concise sentences: the first states the purpose, the second covers returns and performance, the third points to a sibling for more detail. Every sentence serves a distinct purpose with no redundancy.

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

Completeness5/5

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

Despite lacking an output schema, the description covers what the tool does, what it returns (score, category scores, AI summary), performance expectations, and the follow-up path using get_audit_results. This is sufficient for an agent to select and invoke the tool correctly, and to interpret the result.

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

Parameters3/5

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

The input schema already fully describes the 'url' parameter with type, format, and an example. The description mentions 'any URL' but doesn't add additional semantics beyond the schema. With 100% schema coverage, baseline 3 is appropriate.

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 clearly states the tool's function with a specific verb and resource: 'Run a comprehensive SEO audit on any URL.' It also distinguishes itself from the sibling tool by mentioning 'Use get_audit_results with the returned hash for the full per-check breakdown,' clarifying its scope.

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

Usage Guidelines5/5

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

The description explicitly directs users to an alternative: 'Use get_audit_results with the returned hash for the full per-check breakdown,' providing clear guidance on when this tool is appropriate (summary audit) versus the sibling for detailed checks. This fulfills the alternative guidance criterion.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 7 tool updatesv2.0.0
    • First observedadd_monitored_url
    • First observedcheck_api_usage
    • First observedget_audit_results
    • First observedget_monitoring_status
    • First observedlist_monitored_urls
    • First observedremove_monitored_url
    • First observedseo_audit

TDQS

A4.3/5.0

Scored across 7 tools

Disambiguation5/5

All tools have clearly distinct purposes: seo_audit triggers an audit and returns a summary, while get_audit_results fetches a detailed report by hash; the description explicitly directs agents to use both together. Monitoring tools (list/add/remove/get status) are cleanly separated by action and scope, and check_api_usage stands alone.

Naming Consistency4/5

Most tools follow a consistent verb_noun pattern (check_api_usage, get_audit_results, list_monitored_urls, add_monitored_url, remove_monitored_url, get_monitoring_status). However, seo_audit breaks the pattern as a noun phrase rather than a verb_noun construction, creating a minor inconsistency.

Tool Count5/5

With 7 tools, the set is well-scoped for an SEO audit and monitoring service. Each tool covers a distinct core operation with no redundancy or bloat, making the count appropriate for the domain.

Completeness4/5

The tool set covers the core lifecycle for audits (run, retrieve details) and monitoring (add, list, get status, remove), plus API quota checking. Minor gaps like updating monitoring settings or listing historical audits exist, but agents can work around them without major failures.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Enables AI agents to perform comprehensive SEO audits on web pages, including meta tags, headings, links, images, performance, and more, via a CLI or MCP server.
    18
    1
    MIT
  • F
    license
    A
    quality
    D
    maintenance
    Exposes the OctoBoost SEO API as MCP tools so agents can audit websites with compact, structured results instead of fetching and parsing raw HTML.
    4
    43 npm
    -
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI agents to perform instant SEO audits, check robots.txt, sitemaps, and AI crawler access for any URL without API keys.
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Provides on-page SEO analysis via MCP tools, including page audits, schema extraction, robots.txt checks, sitemap parsing, and link analysis. No API keys required; works with any MCP-compatible client.
    5
    19 npm
    MIT