VortexIP
STDIOMCP server for VolcEngine VortexIP and WebScraper instance management and querying capabilities
MCP server for VolcEngine VortexIP and WebScraper instance management and querying capabilities
v1.0
VortexIP MCP Server 是一个模型上下文协议(Model Context Protocol)服务器,为MCP客户端(如Claude Desktop)提供与火山引擎VortexIP服务交互的能力。可以基于自然语言对云端资源进行管理,支持查询VortexIP、WebScraper实例等操作。
网络
本 MCP Server 产品提供以下 Tools (工具/能力):
SaaS
该工具允许您便捷查询火山引擎VortexIP实例详细信息。
输入:
{ "inputSchema": { "type": "object", "required": ["vortex_id"], "properties": { "vortex_id": { "description": "VortexIP实例ID", "type": "string" } } }, "name": "describe_vortex_ip_attributes", "description": "查询您账号下一个VortexIP实例的详细信息。" }
输出:
查询火山引擎VortexIP实例的信息,实例ID为example。
SaaS
该工具允许您便捷查询火山引擎WebScraper实例详细信息。
输入:
{ "inputSchema": { "type": "object", "required": ["web_scraper_id"], "properties": { "web_scraper_id": { "description": "WebScraper实例ID", "type": "string" } } }, "name": "describe_web_scraper_attributes", "description": "查询您账号下一个WebScraper实例的详细信息。" }
输出:
查询火山引擎WebScraper实例的信息,实例ID为example。
python,cursor
https://www.volcengine.com/docs/84296/1251483
从火山引擎管理控制台获取账号 AccessKey 和 SecretKey。
以下环境变量可用于配置MCP服务器:
| 环境变量 | 描述 | 必填 | 默认值 | 
|---|---|---|---|
VOLCENGINE_ENDPOINT | 火山引擎 OpenAPI Endpoint | 否 | - | 
VOLCENGINE_REGION | 火山引擎 VortexIP Region | 是 | - | 
VOLCENGINE_ACCESS_KEY | 火山引擎账号 ACCESS KEY | 是 | - | 
VOLCENGINE_SECRET_KEY | 火山引擎账号 SECRET KEY | 是 | - | 
curl -LsSf https://astral.sh/uv/install.sh | sh
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
uv sync
uv build
When using uv no specific installation is needed. We will
use uvx to directly run mcp-server-vortexip.
添加以下配置到你的 mcp settings 文件中
{ "mcpServers": { "mcp-server-vortexip": { "command": "uvx", "args": [ "--from", "git+https://github.com/volcengine/mcp-server#subdirectory=server/mcp_server_vortexip", "mcp-server-vortexip" ], "env": { "VOLCENGINE_ENDPOINT": "volcengine endpoint", "VOLCENGINE_REGION": "volcengine region", "VOLCENGINE_ACCESS_KEY": "your access-key", "VOLCENGINE_SECRET_KEY": "your secret-key" } } } }
volcengine/mcp-server is licensed under the MIT License.