
CloudSearch
STDIOMCP server for VolcEngine CloudSearch service management and operations
MCP server for VolcEngine CloudSearch service management and operations
Version | v1 |
---|---|
Description | Cloud Search is a fully managed service providing data search and analytics capabilities including full-text search, vector search, hybrid search, and spatio-temporal retrieval. |
Category | Database |
Tags | ES,Elasticsearch,OpenSearch,Search |
This MCP Server product provides the following Tools:
Query available zone list in a specified region
region_id
: region idQuery the detail information of an instance
region_id
: region idinstance_id
: instance idQuery the instance list in a specified region
region_id
: region idzone_id
: zone id, support fuzzy queryinstance_id
: instance id, support fuzzy queryinstance_name
: instance name, support fuzzy querystatus
: instance statusversion
: instance versioncharge_type
: instance charge typeproject_name
: project namepage_number
: page numberpage_size
: page sizeQuery the node list of an instance
region_id
: region idinstance_id
: instance id,Query the plugin list of an instance
region_id
: region idinstance_id
: instance idark,python,cursor
https://console.volcengine.com/es/region:es+cn-beijing/v2/create?projectName=default
Get ak/sk from volcengine, then add ak/sk to the mcp server configuration, or configure it in the .env file in the working directory, the format is as follows
VOLC_ACCESSKEY=your_volcengine_ak VOLC_SECRETKEY=your_volcengine_sk
Add the following configuration to your mcp settings file
{ "mcpServers": { "mcp-server-cloudsearch": { "command": "uvx", "args": [ "--from", "git+https://github.com/volcengine/mcp-server.git#subdirectory=server/mcp_server_cloudsearch", "mcp-server-cloudsearch" ], "env": { "VOLC_ACCESSKEY": "your_volcengine_ak", "VOLC_SECRETKEY": "your_volcengine_sk" } } } }
Or clone the repository to your local and start from the local code repository
{ "mcpServers": { "mcp-server-cloudsearch": { "command": "uv", "args": [ "--directory", "path/to/src/mcp_server_cloudsearch", "run", "server.py" ], "env": { "VOLC_ACCESSKEY": "your_volcengine_ak", "VOLC_SECRETKEY": "your_volcengine_sk" } } } }
volcengine/mcp-server is licensed under the MIT License.