olostep/olostep-mcp-server
Platform-specific configuration:
{
"mcpServers": {
"olostep-mcp-server": {
"command": "npx",
"args": [
"-y",
"olostep-mcp-server"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
Docker Hub npm version License: ISC
A Model Context Protocol (MCP) server implementation that integrates with Olostep for web scraping, content extraction, and search capabilities. To set up Olostep MCP Server, you need to have an API key. You can get the API key by signing up on the Olostep website.
There are multiple ways to connect to the Olostep MCP Server. Choose the one that best fits your workflow.
The simplest way — no local installation required. Connect directly to our hosted MCP server:
https://mcp.olostep.com/mcpAuthentication is done via a Bearer token in the Authorization header using your Olostep API key. See the Client Setup section below for configuration examples.
Pull and run the official Docker image:
docker pull olostep/mcp-server
docker run -i --rm \
-e OLOSTEP_API_KEY="your-api-key" \
olostep/mcp-serverIf you prefer to build the image yourself from source:
git clone https://github.com/olostep/olostep-mcp-server.git
cd olostep-mcp-server
npm install
npm run build
docker build -t olostep/mcp-server:local .
docker run -i --rm -e OLOSTEP_API_KELoading reviews...