LinkAgent

LinkAgent

LinkAgent is a Python MCP server that extracts structured data from any website via Chrome DevTools Protocol. It features a plugin architecture with LinkedIn-specific extractors for feed, profiles, companies, jobs, and search, plus a Chrome extension bridge for authenticated browsing.

Category
Visit Server

README

LinkAgent MCP

LinkAgent MCP server

Universal browser extraction server using Chrome DevTools Protocol. Extract structured data from any website through an extensible plugin system.

How It Works

LinkAgent connects to a running Chromium browser via CDP (Chrome DevTools Protocol) — the same protocol Chrome DevTools uses internally. This means:

  • No browser automation — reads directly from the live DOM
  • Indistinguishable from normal browsing — no injected scripts, no headless flags
  • Works on any site — CDP sees exactly what you see
  • Cross-browser — Chrome, Edge, Opera, Brave, Vivaldi (anything Chromium-based)

Architecture

linkagent_mcp/
├── server.py              # MCP protocol, tool routing
├── config.py              # Environment-based configuration
├── logging.py             # Structured logging setup
├── cdp/
│   ├── browser.py         # Browser discovery (cross-platform)
│   └── client.py          # WebSocket CDP commands
├── core/
│   ├── base.py            # BaseExtractor ABC
│   ├── registry.py        # Tool registry, dynamic dispatch
│   └── models.py          # Data models
└── sites/
    └── linkedin/          # LinkedIn extractors
        ├── extractors/
        │   ├── feed.py
        │   ├── profile.py
        │   ├── company.py
        │   ├── jobs.py
        │   └── search.py
        └── __init__.py    # register() function

See docs/architecture.md for detailed design.

Quick Start

1. Start your browser with CDP

# Windows (Chrome)
chrome.exe --remote-debugging-port=9222

# Windows (Edge)
msedge.exe --remote-debugging-port=9222

# Windows (Opera)
"C:\Users\YourName\AppData\Local\Programs\Opera\opera.exe" --remote-debugging-port=9222

# macOS
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222

# Linux
google-chrome --remote-debugging-port=9222

Log in to LinkedIn (or any target site) in this browser window.

2. Install and run

cd linkagent_mcp
pip install -e .
python -m linkagent_mcp

3. Use from any MCP client

The server exposes these tools:

Tool Description
linkedin_feed Extract posts from the LinkedIn feed
linkedin_profile Extract a person's profile
linkedin_company Extract a company page
linkedin_jobs Search jobs or extract job details
linkedin_search Search for people or companies
navigate Navigate to any URL
take_screenshot Capture a page screenshot
execute_js Run arbitrary JavaScript
list_tabs List open browser tabs
scroll_page Scroll the current page

See docs/tasks.md for detailed tool documentation.

Docker

Run in a containerized Chromium — no local browser needed.

# Build and run
docker compose up -d

# Check logs
docker compose logs -f

# Stop
docker compose down

The container runs headless Chromium with CDP exposed on port 9222. Login sessions persist in a Docker volume (chrome-profile).

Docker + Claude Desktop:

{
  "mcpServers": {
    "linkagent": {
      "command": "docker",
      "args": ["compose", "run", "--rm", "linkagent"]
    }
  }
}

Docker + external CDP access:

The CDP port is exposed on localhost:9222. Other tools can connect directly:

import websockets, json
async with websockets.connect("ws://localhost:9222") as ws:
    await ws.send(json.dumps({"id": 1, "method": "Target.getTargets"}))
    print(await ws.recv())

See docs/docker.md for advanced Docker configuration.

Configuration

Set via environment variables or a .env file:

LINKAGENT_CDP_PORT=9222        # CDP debugging port
LINKAGENT_CDP_HOST=127.0.0.1   # CDP host
LINKAGENT_LOG_LEVEL=INFO       # DEBUG, INFO, WARNING, ERROR
LINKAGENT_LOG_FILE=linkagent.log  # Optional file logging

See .env.example for all options.

Adding a New Site

See docs/adding-sites.md for a step-by-step guide.

sites/
└── twitter/
    ├── __init__.py      # register(registry) function
    └── extractors/
        ├── __init__.py
        └── feed.py      # Your extractor

1. Create the extractor:

# sites/twitter/extractors/feed.py
from linkagent_mcp.core.base import BaseExtractor

class TwitterFeedExtractor(BaseExtractor):
    """Extract tweets from Twitter/X feed."""

    async def extract(self, **kwargs) -> dict:
        raw = await self._eval("""
            (() => {
                const tweets = [];
                // ... your extraction logic ...
                return JSON.stringify({ tweets });
            })()
        """)
        return json.loads(raw)

2. Register it:

# sites/twitter/__init__.py
from linkagent_mcp.core.registry import Registry
from .extractors.feed import TwitterFeedExtractor

def register(registry: Registry):
    registry.register(
        name="twitter_feed",
        extractor_class=TwitterFeedExtractor,
        domain="twitter.com",
        description="Extract tweets from the feed",
        input_schema={"type": "object", "properties": {}},
        navigate_url="https://x.com/home",
        url_patterns=["/home", "/search"],
    )

3. Restart the server — it's auto-discovered.

MCP Client Configuration

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "linkagent": {
      "command": "python",
      "args": ["-m", "linkagent_mcp"],
      "cwd": "D:\\LinkAgent"
    }
  }
}

Cursor / Windsurf

Add to your MCP settings:

{
  "linkagent": {
    "command": "python",
    "args": ["-m", "linkagent_mcp"],
    "cwd": "D:\\LinkAgent"
  }
}

Development

# Install dev dependencies
pip install -e .

# Run with debug logging
LINKAGENT_LOG_LEVEL=DEBUG python -m linkagent_mcp

# Run tests
python tests/test_live.py

Roadmap

See docs/roadmap.md for the full roadmap.

Current (v0.1.0)

  • Universal CDP-based extraction framework
  • Plugin system with auto-discovery
  • 5 LinkedIn extractors (feed, profile, company, jobs, search)
  • 5 browser control tools
  • Cross-platform browser detection
  • Environment-based configuration
  • Structured logging

Next (v0.2.0)

  • Robustness — Auto-reconnection, health checks, error recovery
  • More data — Pagination, expanded sections, media extraction
  • More sites — Twitter/X, GitHub, Reddit, Instagram
  • Better output — Data storage, export formats, caching

Future Goals

  • Self-healing selectors — Automatically adapt to DOM changes
  • Write operations — Safe, controlled posting and messaging with human approval
  • Multi-browser — Multiple profiles, remote browsers, Docker support
  • Scheduling — Cron-like extraction, event-driven alerts
  • Analytics — Trend analysis, network analysis, competitive intelligence
  • Platform — Visual extractor builder, marketplace, cloud hosting

What We Want to Overcome

Problem Current State Goal
Fragile selectors Manual updates when LinkedIn changes Self-healing, automatic adaptation
Read-only Cannot post, message, or interact Controlled writes with approval
Single browser One profile, one session Multiple browsers and profiles
No scheduling Manual extraction only Cron jobs, event-driven alerts
No storage JSON output only SQLite/PostgreSQL, CSV export
No testing Manual testing only Snapshot tests, selector monitoring
Deployment Requires local browser Docker, cloud, headless mode

See docs/limitations.md for known issues.

Documentation

License

MIT — see LICENSE.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured