-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
nikolaout edited this page Apr 9, 2026
·
1 revision
The recommended way to run the server is from npm:
set OUTSCRAPER_API_KEY=YOUR_API_KEY
npx -y outscraper-mcp{
"mcpServers": {
"outscraper": {
"command": "npx",
"args": ["-y", "outscraper-mcp"],
"env": {
"OUTSCRAPER_API_KEY": "YOUR_API_KEY"
}
}
}
}claude mcp add outscraper -e OUTSCRAPER_API_KEY=YOUR_API_KEY -- npx -y outscraper-mcp{
"mcpServers": {
"outscraper": {
"command": "npx",
"args": ["-y", "outscraper-mcp"],
"env": {
"OUTSCRAPER_API_KEY": "YOUR_API_KEY"
}
}
}
}{
"mcp": {
"inputs": [
{
"type": "promptString",
"id": "outscraperApiKey",
"description": "Outscraper API Key",
"password": true
}
],
"servers": {
"outscraper": {
"command": "npx",
"args": ["-y", "outscraper-mcp"],
"env": {
"OUTSCRAPER_API_KEY": "${input:outscraperApiKey}"
}
}
}
}
}If a client cannot resolve npx, use:
{
"command": "C:\\Program Files\\nodejs\\npx.cmd",
"args": ["-y", "outscraper-mcp"]
}Required:
OUTSCRAPER_API_KEY
Optional:
OUTSCRAPER_API_BASE_URLHTTP_STREAMABLE_SERVERSSE_LOCALHTTP_STATEFUL_SERVERHOSTPORTCLOUD_SERVICE
Official links: