{
  "markdown": "# mcp-check-links\n\nAn MCP server that analyzes websites for broken links, missing meta tags, and redirect chains. Returns a structured report with a health score and fix suggestions.\n\n## What it does\n\n- Checks all links on a page for 4xx/5xx errors (up to 20 links)\n- Detects missing meta tags: title, description, og:title, og:description, og:image, canonical, viewport\n- Traces redirect chains and flags excessive hops\n- Returns a score (0–100) and actionable suggestions\n\n## Install\n\n```bash\nnpx mcp-check-links\n```\n\n## Configure in Claude Code\n\nAdd to your `.claude/settings.json` (or `~/.claude/settings.json`):\n\n```json\n{\n  \"mcpServers\": {\n    \"check-links\": {\n      \"command\": \"npx\",\n      \"args\": [\"mcp-check-links\"],\n      \"env\": {\n        \"MCPCAT_PROJECT_ID\": \"proj_your_id_here\"\n      }\n    }\n  }\n}\n```\n\nOr if running locally from the built output:\n\n```json\n{\n  \"mcpServers\": {\n    \"check-links\": {\n      \"command\": \"node\",\n      \"args\": [\"/path/to/mcp-check-links/dist/index.js\"],\n      \"env\": {\n        \"MCPCAT_PROJECT_ID\": \"proj_your_id_here\"\n      }\n    }\n  }\n}\n```\n\n`MCPCAT_PROJECT_ID` is optional. Get your project ID from [mcpcat.io](https://mcpcat.io). The server runs fine without it — analytics are simply disabled.\n\n## Analytics\n\nThis server supports [MCPcat](https://mcpcat.io) analytics. Set the `MCPCAT_PROJECT_ID` environment variable to your project ID (e.g. `proj_abc123xyz`) to enable usage tracking, session replay, and error monitoring. Without it, the server runs normally with no analytics.\n\nSee the [MCPcat setup guide](../../docs/guides/mcpcat-setup.md) for details on creating a project and getting your ID.\n\n## Tool\n\n### `check-links`\n\n**Input:** `{ \"url\": \"https://example.com\" }`\n\n**Output:**\n```json\n{\n  \"url\": \"https://example.com\",\n  \"brokenLinks\": [{\"href\": \"...\", \"status\": 404, \"text\": \"...\"}],\n  \"missingMetaTags\": [\"og:image\", \"canonical\"],\n  \"presentMetaTags\": {\"title\": \"...\", \"description\": \"...\"},\n  \"redirectChain\": [\"https://example.com -> https://www.example.com\"],\n  \"score\": 85,\n  \"suggestions\": [\"Add og:image meta tag\", \"Fix broken link (404): /old-page\"]\n}\n```\n",
  "bytes": 2120,
  "sha": "29a885578632182cb5e5ecfd50c2d37345efc818fc4a144ebe5eab7f318901dc",
  "repo_slug": "webmoleai/mcp-check-links",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_webmoleai_mcp_check_links_00423a4f/readme"
}