MCP support

Some SeoTools checkers are available on a trial basis as an MCP server, so an AI assistant can call them directly.

MCP (Model Context Protocol) is a standard that lets AI assistants call external tools directly. This endpoint exposes 8 of SeoTools' checkers as MCP tools so an AI client can run them for you.

  • Currently offered on a trial basis; the endpoint or tool set may change without notice.
  • No authentication required (authless).
  • Free to use, but subject to the same per-tool rate limits as the web version (see each tool's page).
  • Terms of use

Endpoint

Streamable HTTP
https://tools.seory.co.jp/api/mcp

Supported tools (8)

  • nslookupLook up DNS records (A/AAAA/MX/NS/CNAME/TXT/SOA) for a domain
    Open the web version
  • redirect_checkTrace redirects for a URL (up to 10 hops)
    Open the web version
  • status_checkCheck a URL's HTTP status with a single request
    Open the web version
  • tag_duplicate_checkDetect duplicate meta description, structured data, OGP, tracking tags, etc.
    Open the web version
  • ogp_checkResolve the effective OGP/Twitter Card values and duplicates
    Open the web version
  • html_size_checkMeasure the exact HTML byte size and Content-Type
    Open the web version
  • invisible_character_checkDetect invisible Unicode (tag characters, variation selectors, zero-width characters)
    Open the web version
  • sitemap_urlsExtract URLs from a sitemap (or auto-discover one from a page URL). Uses the same logic as the sitemap auto-discovery inside the Search Console URL inspection tool, but has no dedicated web page of its own.

Not available over MCP

Site structure checker, Search Console URL inspection (the Google-authenticated bulk feature), zero access page checker, password generator, and other tools that need a user's own credentials or browser-only processing are web-only for now.

Connect a client

Claude Code

shell
claude mcp add --transport http seory-tools https://tools.seory.co.jp/api/mcp

claude.ai / Claude Desktop

Add a custom connector and paste the endpoint URL:

URL
https://tools.seory.co.jp/api/mcp

Codex CLI

shell
codex mcp add seory-tools --url https://tools.seory.co.jp/api/mcp

Or add it directly to your config file: ~/.codex/config.toml

~/.codex/config.toml
[mcp_servers.seory-tools]
url = "https://tools.seory.co.jp/api/mcp"

Cursor

Add to your MCP settings JSON:

mcp.json
{
  "mcpServers": {
    "seory-tools": {
      "url": "https://tools.seory.co.jp/api/mcp"
    }
  }
}

Visual Studio Code

Add to your MCP settings JSON:

mcp.json
{
  "servers": {
    "seory-tools": {
      "type": "http",
      "url": "https://tools.seory.co.jp/api/mcp"
    }
  }
}