- Explore MCP Servers
- eget_mcp
Eget Mcp
What is Eget Mcp
eget_mcp is a simple Model Context Protocol (MCP) server that integrates the eGet web scraper with Claude for Desktop, allowing users to scrape web content through a local API.
Use cases
Use cases for eget_mcp include summarizing articles from news websites, extracting product information from e-commerce sites, and gathering data for academic research.
How to use
To use eget_mcp, first set up the eGet web scraper and ensure it is running. Then, set up the MCP server by creating a project directory, configuring a virtual environment, and running the server script. Finally, configure Claude for Desktop to connect to the MCP server and use commands to scrape and summarize website content.
Key features
Key features of eget_mcp include integration with Claude for Desktop, the ability to scrape and summarize web content, and the use of a local API for efficient data retrieval.
Where to use
eget_mcp can be used in various fields such as research, content creation, digital marketing, and data analysis where web content needs to be extracted and processed.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Eget Mcp
eget_mcp is a simple Model Context Protocol (MCP) server that integrates the eGet web scraper with Claude for Desktop, allowing users to scrape web content through a local API.
Use cases
Use cases for eget_mcp include summarizing articles from news websites, extracting product information from e-commerce sites, and gathering data for academic research.
How to use
To use eget_mcp, first set up the eGet web scraper and ensure it is running. Then, set up the MCP server by creating a project directory, configuring a virtual environment, and running the server script. Finally, configure Claude for Desktop to connect to the MCP server and use commands to scrape and summarize website content.
Key features
Key features of eget_mcp include integration with Claude for Desktop, the ability to scrape and summarize web content, and the use of a local API for efficient data retrieval.
Where to use
eget_mcp can be used in various fields such as research, content creation, digital marketing, and data analysis where web content needs to be extracted and processed.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
Claude Web Scraper MCP
A simple Model Context Protocol (MCP) server that connects Claude for Desktop to a locally running eGet web scraper. This allows Claude to scrape website content through your local API.
Prerequisites
- Claude for Desktop
- Python 3.7+
- eGet web scraper (from https://github.com/vishwajeetdabholkar/eGet-Crawler-for-ai)
Setup Instructions
1. Set up eGet Web Scraper
First, make sure you have the eGet web scraper running:
# Clone the eGet repository
git clone https://github.com/vishwajeetdabholkar/eGet-Crawler-for-ai
cd eGet-Crawler-for-ai
# Set up and run eGet according to its instructions
# (typically using Docker or local Python installation)
# Verify the API is running (default: http://localhost:8000/api/v1/scrape)
2. Set up the MCP Server
# Create project directory
mkdir claude-scraper-mcp
cd claude-scraper-mcp
# Set up UV and virtual environment
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Install dependencies
uv add "mcp[cli]" httpx
# Create the MCP server script
touch scrape_mcp_server.py
Copy the scrape_mcp_server.py code into the file.
3. Configure Claude for Desktop
- Create or edit the Claude desktop configuration:
# On macOS
mkdir -p ~/Library/Application\ Support/Claude/
- Add this configuration to
~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"scrape-service": {
"command": "/absolute/path/to/claude-scraper-mcp/.venv/bin/python",
"args": [
"/absolute/path/to/claude-scraper-mcp/scrape_mcp_server.py"
]
}
}
}
Replace the paths with the actual absolute paths to your virtual environment and script.
- Restart Claude for Desktop
Usage
Once set up, you can use Claude to scrape websites with commands like:
- “Scrape the content from https://example.com and summarize it”
- “Get information about the website at https://news.ycombinator.com”
Troubleshooting
If you encounter issues:
- Check that eGet scraper is running
- Verify the API endpoint in the script matches your eGet configuration
- Make sure Claude for Desktop is using the correct Python interpreter
- Restart Claude for Desktop after making changes to the configuration
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.










