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
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config
# 使用官方 Node.js 18 Alpine 基础镜像
FROM node:18-alpine

Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Open-WebSearch MCP Server

[![smithery badge](https://smithery.ai/badge/@Aas-ee/open-websearch)](https://smithery.ai/server/@Aas-ee/open-websearch)
[中文](./README-zh.md)

A Model Context Protocol (MCP) server based on multi-engine search results, supporting free web search without API keys.
Expand Down Expand Up @@ -29,6 +30,14 @@ A Model Context Protocol (MCP) server based on multi-engine search results, supp

## Installation Guide

### Installing via Smithery

To install MultiWebSearch for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@Aas-ee/open-websearch):

```bash
npx -y @smithery/cli install @Aas-ee/open-websearch --client claude
```

### Local Installation

1. Clone or download this repository
Expand Down
35 changes: 35 additions & 0 deletions smithery.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Smithery configuration file: https://smithery.ai/docs/build/project-config

startCommand:
type: http
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required: []
properties:
enableCors:
type: boolean
default: false
description: Enable CORS
corsOrigin:
type: string
default: "*"
description: CORS origin
defaultSearchEngine:
type: string
default: bing
description: Default search engine (bing, duckduckgo, exa, brave)
useProxy:
type: boolean
default: false
description: Enable HTTP proxy
proxyUrl:
type: string
default: http://127.0.0.1:10809
description: Proxy server URL
exampleConfig:
enableCors: false
corsOrigin: "*"
defaultSearchEngine: duckduckgo
useProxy: true
proxyUrl: http://your-proxy-server:port