Cloudsway Smartsearch

by Cloudsway-AI

537 downloads
Not rated
GitHub

About

An MCP server integrating the remote Cloudsway Smart Search API, providing web search functionality.

Details

Author
Cloudsway-AI
Downloads
537
Categories
Search

- Web search with keyword query support
- Pagination via count and offset parameters
- Language selection with setLang option
- Safety level control (safeSearch with 'Strict' default)
- All results returned in structured JSON format
- Compatible with ModelScope MCP platform

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Cloudsway Smartsearch
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

After obtaining an API key (SERVER_KEY) from Cloudsway, configure the server by setting the SERVER_KEY environment variable. The server can be run via npx -y @cloudsway-ai/smartsearch with the key provided in the environment. The primary tool is SmartSearch, which accepts parameters: query (required), count, offset, setLang, and safeSearch.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "cloudsway smartsearch": {
            "smartsearch": {
                "command": "npx",
                "args": [
                    "-y",
                    "@cloudsway-ai/smartsearch@0.1.1"
                ],
                "env": {
                    "SERVER_KEY": "YOUR_API_KEY_HERE"
                }
            }
        }
    }
}

McpServers

{
    "smartsearch": {
        "command": "npx",
        "args": [
            "-y",
            "@cloudsway-ai/smartsearch@0.1.1"
        ],
        "env": {
            "SERVER_KEY": "YOUR_API_KEY_HERE"
        }
    }
}

SmartSearch MCP Server

An MCP server integrating the remote Cloudsway Smart Search API, providing web search functionality.

Features

- Web Search: Supports keyword search, pagination, language, and safety level options
- Structured Output: All results are returned in JSON format
- Platform Compatibility: Suitable for ModelScope MCP platform and compatible clients

Tools

SmartSearch

- Performs web search with support for pagination and safety options
- Input parameters:
- query (string): Search keywords
- count (number, optional): Number of results to return (default: 10)
- offset (number, optional): Pagination offset (default: 0)
- setLang (string, optional): Search language (default: 'en')
- safeSearch (string, optional): Safety search level (default: 'Strict')

Configuration

Obtain API Key

1. Log in to www.cloudsway.ai or contact info@cloudsway.ai to get your Endpoint and AccessKey. 2. Combine them in the format {Endpoint}-{AccessKey} to form your SERVER_KEY.

ModelScope Deployment

- When deploying this tool on ModelScope, enter your API key (SERVER_KEY) in the environment variable configuration area.
- Entry file: src/smartsearch/smartsearch.py

Example Service Configuration

```json
{
"mcpServers": {
"smartsearch": {
"command": "npx",
"args": [
"-y",
"@cloudsway-ai/smartsearch"
],
"env": {
"SERVER_KEY": "YOUR_API_KEY_HERE"
}
}
}
}

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.