CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
carsonroell-debug avatar

Linkrescue Mcp

carsonroell-debug/linkrescue-mcp
authSTDIOregistry active
Summary

This server wraps the LinkRescue API so Claude can scan websites for broken affiliate links, estimate revenue loss, and generate fix suggestions. You get four tools: check_broken_links crawls a site or sitemap and returns structured reports with detected affiliate network tracking, monitor_links sets up recurring checks, get_fix_suggestions prioritizes remediation by impact, and health_check verifies connectivity. Free tier handles single pages, Pro unlocks multi-page crawls and fix recommendations, Agency adds hourly monitoring and webhooks. Falls back to simulated data when the backend is unreachable. Useful if you manage affiliate sites and want an AI agent to catch and triage broken links that are costing you conversions without manually checking dashboards.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

LinkRescue MCP Server

PyPI License: MIT MCPize

Find broken affiliate links fast, prioritize by impact, and generate fix suggestions your AI agent can act on.

One call. 38+ affiliate networks checked. Revenue loss estimated.

One-click install: Install on MCPize | pip install linkrescue-mcp

LinkRescue MCP exposes broken-link scanning, monitoring, and remediation workflows through the Model Context Protocol (MCP), so tools like Claude and Cursor can run link-health operations directly.

What You Get

  • check_broken_links: scan a URL (or sitemap) and return a structured broken-link report
  • monitor_links: set up recurring monitoring for a website
  • get_fix_suggestions: generate prioritized remediation recommendations
  • health_check: verify MCP server and backend API connectivity

If the LinkRescue backend API is unreachable, the server falls back to realistic simulated data so local testing and demos keep working.

Quick Start

{
  "mcpServers": {
    "linkrescue": {
      "command": "linkrescue-mcp"
    }
  }
}

Then ask your AI agent:

"Scan example.com for broken affiliate links"

Free vs Pro

ToolFreePro ($19/mo)Agency ($29/mo)
health_checkYesYesYes
check_broken_links (up to 50 pages)YesYesYes
check_broken_links (up to 2,000 pages)-YesYes
check_broken_links (unlimited + sitemap crawl)--Yes
get_fix_suggestions-YesYes
monitor_links (daily)-YesYes
monitor_links (hourly + webhooks)--Yes
Revenue loss estimates-YesYes
Multi-site monitoring-5 sites25 sites

Free tier gives you single-page broken-link checks. Pro unlocks the full crawler + fix suggestions + recurring monitoring. Agency adds hourly checks, webhooks, and unlimited site count.

Upgrade to Pro on MCPize — $19/mo or $190/yr. Agency $29/mo or $290/yr.

Install

MCPize (Recommended)

One-click install with managed hosting: Install on MCPize

PyPI

pip install linkrescue-mcp
linkrescue-mcp

From source

git clone https://github.com/carsonroell-debug/linkrescue-mcp.git
cd linkrescue-mcp
pip install -r requirements.txt
python main.py

MCP endpoint:

  • http://localhost:8000/mcp

Configuration

VariableDescriptionDefault
LINKRESCUE_API_BASE_URLBase URL for LinkRescue APIhttp://localhost:3000/api/v1
LINKRESCUE_API_KEYAPI key for authenticated requestsempty

Example:

export LINKRESCUE_API_BASE_URL="https://www.linkrescue.io/api/v1"
export LINKRESCUE_API_KEY="your-api-key"
linkrescue-mcp

Get an API key at linkrescue.io/settings/api (Pro and Agency tiers only).

Running Options

Run via the installed entry point:

linkrescue-mcp

Run directly from source:

python main.py

Run via FastMCP CLI:

fastmcp run main.py --transport streamable-http --port 8000

Connect an MCP Client

Claude Desktop

Add this to claude_desktop_config.json:

{
  "mcpServers": {
    "linkrescue": {
      "command": "linkrescue-mcp"
    }
  }
}

Claude Code

claude mcp add linkrescue --transport http http://localhost:8000/mcp

Try It

fastmcp list-tools main.py
fastmcp call-tool main.py health_check '{}'
fastmcp call-tool main.py check_broken_links '{"url":"https://example.com"}'

Tool Inputs and Outputs

check_broken_links

Inputs:

  • url (required): site URL to scan
  • sitemap_url (optional, Agency tier): crawl from sitemap
  • max_depth (optional, default 3): crawl depth

Returns scan metadata, broken-link details, and summary statistics. Pro and Agency tiers include estimated monthly revenue loss for broken affiliate links.

monitor_links

Inputs:

  • url (required)
  • frequency_hours (optional, default 24; Agency tier supports 1)

Returns monitoring ID, schedule details, and status. Free tier returns a simulated monitor (no persistence).

get_fix_suggestions

Input:

  • full report from check_broken_links, or
  • raw broken_links array, or
  • JSON string of either format

Returns prioritized actions and suggested remediation steps. Pro and Agency tiers only.

health_check

No input. Returns server status and backend API reachability.

Deployment

Smithery

This repo includes smithery.yaml and smithery.json.

  1. Push repository to GitHub
  2. Create/add server in Smithery
  3. Point Smithery to this repository

Docker / Hosting Platforms

A Dockerfile is included for Railway, Fly.io, and other container hosts.

# Railway
railway up

# Fly.io
fly launch
fly deploy

Set LINKRESCUE_API_BASE_URL and LINKRESCUE_API_KEY in your host environment.

Architecture

Agent (Claude, Cursor, etc.)
  -> MCP
LinkRescue MCP Server (this repo)
  -> HTTP API
LinkRescue Backend API (linkrescue.io)

This server is a translation layer between MCP tool calls and LinkRescue API operations.

License

MIT — Built by Freedom Engineers

Related

  • SelfHeal MCP — Self-healing proxy for MCP servers
  • SiteHealth MCP — Full website health audit
  • LeadEnrich MCP — Waterfall lead enrichment

Additional README Variants

  • Developer-focused version: README.dev.md
  • Marketplace-focused version: README.marketplace.md
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Configuration

LINKRESCUE_API_BASE_URL

LinkRescue API endpoint for deep scans

LINKRESCUE_API_KEYsecret

API key for authenticated requests

Categories
Sales & Marketing
Registryactive
Packagelinkrescue-mcp
TransportSTDIO
AuthRequired
UpdatedApr 6, 2026
View on GitHub

More from carsonroell-debug

  • SteadyFetch
  • Leadenrich Mcp1
  • SelfHeal MCP
  • SiteHealth MCP

Related Sales & Marketing MCP Servers

View all →
cavasotti avatar
DoorVault IDEAL Scoring

cavasotti/doorvault

Real estate investment tools powered by DoorVault IDEAL Scoring v2.0. Analyze any rental property deal and get a structured verdict (IDEAL/PASS/NEAR-MISS/FAIL), capital velocity rating, priority score breakdown, dual rent scenarios comparing market rent vs Section 8 FMR, and a detailed investment recommendation. Also includes: Section 8 FMR lookup by ZIP, rental property tax deduction checklist, NOI/CoC/DSCR/equity calculator, and a phase-by-phase BRRR checklist.
cavasotti avatar
DoorVault IDEAL Scoring

cavasotti/doorvault-c288701e

Real estate investment tools powered by DoorVault IDEAL Scoring v2.0. Analyze any rental property deal and get a structured verdict (IDEAL/PASS/NEAR-MISS/FAIL), capital velocity rating, priority score breakdown, dual rent scenarios comparing market rent vs Section 8 FMR, and a detailed investment recommendation. Also includes: Section 8 FMR lookup by ZIP, rental property tax deduction checklist, NOI/CoC/DSCR/equity calculator, and a phase-by-phase BRRR checklist.
charlie-morrison avatar
Indie Founder Revenue MCP

charlie-morrison/indie-founder-mcp

Aggregates Lemon Squeezy, Gumroad, Polar, and Stripe revenue into one Claude-queryable view.
chris-eaccountability avatar
LLM SEO MCP — Elephant Accountability

chris-eaccountability/elephant-accountability-mcp

LLM SEO and Agent Discoverability for B2B SaaS. Pricing, fit assessment, audit requests.
cloud.metrifyr avatar
Metrifyr

cloud.metrifyr/mcp

Query Google Analytics 4, Search Console, GTM & AdSense with natural language from MCP clients.
cmendezs avatar
Mcp Facturacion Electronica Es

cmendezs/mcp-facturacion-electronica-es

Spanish e-invoicing MCP server: VERI*FACTU, Facturae/FACe, SII, Crea y Crece B2B.