Access Outscraper's data extraction services for business intelligence, location data, reviews, and contact information from various online platforms.
A comprehensive Model Context Protocol (MCP) server that provides AI assistants with access to Outscraper's data extraction services. This server implements 25+ tools for extracting business intelligence, location data, reviews, and contact information from Google Maps, Amazon, Yelp, Trustpilot, and many other online platforms with high reliability and performance.
To install the Outscraper MCP server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install outscraper-mcp-server --client claude
# Using pip
pip install outscraper-mcp-server
# Using uv (recommended)
uv add outscraper-mcp-server
# Using uvx for one-time execution
uvx outscraper-mcp-server
git clone https://github.com/outscraper/outscraper-mcp
cd outscraper-mcp-server
# Using uv (recommended)
uv sync
# Using pip
pip install -e .
export OUTSCRAPER_API_KEY="your_api_key_here"
Or create a .env
file:
OUTSCRAPER_API_KEY=your_api_key_here
Link to the profile page to create the API key
Add to your claude_desktop_config.json
:
Via Smithery (Automatic):
{
"mcpServers": {
"outscraper": {
"command": "npx",
"args": ["-y", "@smithery/cli", "run", "outscraper-mcp-server"],
"env": {
"OUTSCRAPER_API_KEY": "your_api_key_here"
}
}
}
}
Via Local Installation:
{
"mcpServers": {
"outscraper": {
"command": "uvx",
"args": ["outscraper-mcp-server"],
"env": {
"OUTSCRAPER_API_KEY": "your_api_key_here"
}
}
}
}
Via Manual Installation:
{
"mcpServers": {
"outscraper": {
"command": "uv",
"args": ["run", "python", "-m", "outscraper_mcp_server"],
"env": {
"OUTSCRAPER_API_KEY": "your_api_key_here"
}
}
}
}
Automatic Installation with UVX (Recommended):
{
"mcpServers": {
"outscraper": {
"command": "uvx",
"args": ["outscraper-mcp-server"],
"env": {
"OUTSCRAPER_API_KEY": "your_api_key_here"
}
}
}
}
Manual Installation:
{
"mcpServers": {
"outscraper": {
"command": "outscraper-mcp-server",
"env": {
"OUTSCRAPER_API_KEY": "your_api_key_here"
}
}
}
}
This server is compatible with any MCP client, including:
Experimental Software License - see LICENSE file for details.
Notice: This software is experimental and free to use for all purposes. Created by nikolaout.
AI-powered tools for web scraping, crawling, and browser automation.
Secure fetch to prevent access to local resources
A server for web research that brings real-time information into AI models and researches any topic.
A financial web table crawler using Playwright that queries data from multiple websites with fallback switching.
A MCP server to retrieve up-to-date jobs from company career sites.
Discovers and collects MCP servers from the internet.
A Node.js server that enables AI assistants to control the Chrome browser via WebSocket. Requires the CodingBaby Chrome Extension.
An MCP server for advanced web crawling, content extraction, and AI-powered analysis using the crawl4ai library.
A server for browser automation using Google Chrome, based on the MCP framework.
Browser automation using Puppeteer, with support for local, Docker, and Cloudflare Workers deployments.