Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
FROM node:lts-alpine

# Set working directory
WORKDIR /app

# Copy package files
COPY package.json package-lock.json ./

# Install dependencies without running scripts (skip prepare if any)
RUN npm install --ignore-scripts

# Copy the rest of the source code
COPY . .

# Build the project
RUN npm run build

# Expose port if needed (not required for stdio MCP)

# Set entrypoint
ENTRYPOINT ["node", "build/index.js"]
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Olostep MCP Server

[![smithery badge](https://smithery.ai/badge/@olostep/olostep-mcp-server)](https://smithery.ai/server/@olostep/olostep-mcp-server)

A Model Context Protocol (MCP) server implementation that integrates with [Olostep](https://olostep.com) for web scraping, content extraction, and search capabilities.

## Features
Expand All @@ -14,6 +16,14 @@ A Model Context Protocol (MCP) server implementation that integrates with [Olost

## Installation

### Installing via Smithery

To install Olostep MCP Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@olostep/olostep-mcp-server):

```bash
npx -y @smithery/cli install @olostep/olostep-mcp-server --client claude
```

### Running with npx

```bash
Expand Down Expand Up @@ -204,4 +214,3 @@ Example error response:
## License

ISC License

23 changes: 23 additions & 0 deletions smithery.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml

startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- olostepApiKey
properties:
olostepApiKey:
type: string
description: Your Olostep API key for authenticating with the Olostep API.
commandFunction:
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
|-
(config) => ({
command: 'node',
args: ['build/index.js'],
env: { OLOSTEP_API_KEY: config.olostepApiKey }
})
exampleConfig:
olostepApiKey: YOUR_API_KEY