10 months ago
An MCP server integrating the remote Cloudsway Smart Search API, providing web search functionality.
Overview
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 MCP platform and compatible clients
Tools
SmartSearch
- Performs web search with support for pagination and safety options
- Input parameters:
query(string): Search keywordscount(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
- Log in to www.cloudsway.ai or contact info@cloudsway.ai to get your Endpoint and AccessKey.
- Combine them in the format
{Endpoint}-{AccessKey}to form yourSERVER_KEY.
Example Service Configuration
{
"mcpServers": {
"smartsearch": {
"command": "npx",
"args": [
"-y",
"@cloudsway-ai/smartsearch"
],
"env": {
"SERVER_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
Server Config
{
"mcpServers": {
"smartsearch": {
"command": "npx",
"args": [
"-y",
"@cloudsway-ai/smartsearch"
],
"env": {
"SERVER_KEY": "YOUR_API_KEY_HERE"
}
}
}
}