Backlinks Mcp

by cnych

328 downloads
Not rated
GitHub

Description

# Backlinks MCP A MCP (Model Control Protocol) service for retrieving backlink information for any domain using Ahrefs' data. ## Overview This service provides an API to retrieve backlink data for websites. It handles the entire process including captcha solving, authentication…

About

# Backlinks MCP A MCP (Model Control Protocol) service for retrieving backlink information for any domain using Ahrefs' data. ## Overview This service provides an API to retrieve backlink data for websites. It handles the entire process including captcha solving, authentication, and data retrieval from Ahrefs. The…

Details

Author
cnych
Downloads
328
Categories
Other, API

- Retrieves backlinks for any domain
- Automatic captcha solving using CapSolver
- Signature caching to reduce API calls
- Fast and efficient data retrieval
- Simplified output with most relevant backlink info

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Backlinks Mcp
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install the prerequisites (Python 3.8+, uv, and a CapSolver API key), then set the CAPSOLVER_API_KEY environment variable. Register the server in a compatible MCP host such as Claude Desktop via fastmcp install src/backlinks_mcp/server.py, or configure it in Cursor IDE using the provided MCP JSON snippet. The primary tool is get_backlinks_list(domain), which returns a list of backlink objects.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "backlinks mcp": {
            "backlinks-mcp": {
                "command": "uv",
                "args": [
                    "pip",
                    "install",
                    "fastmcp"
                ]
            }
        }
    }
}

McpServers

{
    "backlinks-mcp": {
        "command": "uv",
        "args": [
            "pip",
            "install",
            "fastmcp"
        ]
    }
}

Backlinks MCP

A MCP (Model Control Protocol) service for retrieving backlink information for any domain using Ahrefs' data.

Overview

This service provides an API to retrieve backlink data for websites. It handles the entire process including captcha solving, authentication, and data retrieval from Ahrefs. The results are cached to improve performance and reduce API costs.

> This MCP server is only for learning purposes, please do not abuse it, otherwise the consequences will be self-responsible. This project is inspired by @哥飞社群.

About this MCP Server, please refer to the introduction of Claude MCP Backlinks MCP.

Features

- 🔍 Retrieve backlink data for any domain
- 🔒 Automatic captcha solving with CapSolver
- 💾 Signature caching to reduce API calls
- 🚀 Fast and efficient data retrieval
- 🧹 Simplified output with the most relevant backlink information

Installation

Prerequisites

- Python 3.8 or higher
- A CapSolver account and API key (register here)
- uv installed (on macOS, you might need to install with brew install uv)

Manual Setup

1. Clone the repository:

   git clone https://github.com/cnych/backlinks-mcp.git
   cd backlinks-mcp
   

2. Install FastMCP with uv:

   uv pip install fastmcp
   

3. Set up your CapSolver API key:

   export CAPSOLVER_API_KEY="your-capsolver-api-key"

Usage

Running the Service

You can use FastMCP to run the service in several ways:

Install in Claude Desktop

To install this server in Claude Desktop and interact with it right away:

fastmcp install src/backlinks_mcp/server.py

Test with the MCP Inspector

For development and testing:

fastmcp dev src/backlinks_mcp/server.py

Install in Cursor IDE

On Cursor Settings, switch to MCP tab, click the +Add new global MCP server button, then input the following content:

{
  "mcpServers": {
    "Backlink MCP": {
      "command": "uvx",
      "args": ["backlinks-mcp"],
      "env": {
        "CAPSOLVER_API_KEY": "CAP-xxxxxx"
      }
    }
  }
}

Also, you can create a .cursor/mcp.json file in the project root directory and input the above content, so it's a project-specific MCP server.

> CAPSOLVER_API_KEY env can get from here.

Next, we can use this MCP in Cursor:

Use Backlinks MCP on Cursor

API Reference

The service exposes the following MCP tool:

get_backlinks_list(domain: str)

Retrieves a list of backlinks for the specified domain.

Parameters:

- domain (string): The domain to query (e.g., "example.com")

Returns:
A list of backlink objects, each containing:

- anchor: The anchor text of the backlink
- domainRating: The domain rating score (0-100)
- title: The title of the linking page
- urlFrom: The URL of the page containing the backlink
- urlTo: The URL being linked to
- edu: Boolean indicating if it's from an educational site
- gov: Boolean indicating if it's from a government site

Example Response:

[
  {
    "anchor": "example link",
    "domainRating": 76,
    "title": "Useful Resources",
    "urlFrom": "https://referringsite.com/resources",
    "urlTo": "https://example.com/page",
    "edu": false,
    "gov": false
  },
  ...
]

Development

For development purposes, you can clone the repository and install development dependencies:

git clone https://github.com/cnych/backlinks-mcp.git
cd backlinks-mcp
uv sync

How It Works

1. The service first attempts to retrieve a cached signature for the domain
2. If no valid cache exists, it:
- Solves the Cloudflare Turnstile captcha using CapSolver
- Obtains a signature and validity period from Ahrefs
- Caches this information for future use
3. Uses the signature to retrieve the backlinks data
4. Processes and returns the simplified backlink information

Troubleshooting

- CapSolver API Key Error: Ensure your CAPSOLVER_API_KEY environment variable is set correctly
- Rate Limiting: If you encounter rate limits, try using the service less frequently
- No Results: Some domains may have no backlinks or may not be indexed by Ahrefs
- Issues: If you encounter issues with Backlinks MCP, check the Backlinks MCP GitHub repository for troubleshooting guidance

License

This project is licensed under the MIT License - see the LICENSE file for details.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.