Description
ScrAPI MCP Server is a specialized web scraping solution that enables AI assistants to extract content from websites that employ bot detection, captchas, or geolocation restrictions. Developed by DevEnterprise Software, this TypeScript implementation provides two core tools: one for retrieving content as HTML for advanced parsing needs, and another for Markdown output when text content is the priority. The server leverages residential proxies and automated captcha solving capabilities through the ScrAPI service, making it particularly valuable for AI systems that need to access otherwise restricted web content for research, data collection, or information retrieval tasks.
Installation
npx -y @deventerprisesoftware/scrapi-mcp npm install @deventerprisesoftware/scrapi-mcp git clone https://github.com/deventerprisesoftware/scrapi-mcp Claude Desktop Configuration
Add this configuration to your Claude Desktop config file to enable this MCP server:
Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json
Config file location: %APPDATA%\Claude\claude_desktop_config.json
Config file location: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"scrapi": {
"command": "npx",
"args": [
"-y",
"@deventerprisesoftware/scrapi-mcp"
]
}
}
}