Wuying AgentBay MCP Server provides cloud infrastructure designed for AI Agents, enabling enterprises, developers, and AI vendors to easily configure and run AI Agent tasks in a secure, serverless cloud environment. Through the AgentBay MCP Server, agent applications can quickly integrate and utilize relevant tools with minimal setup.
AgentBay is Alibaba Cloud's Wuying cloud infrastructure specifically designed for AI Agents, providing a secure execution environment with pre-integrated standard tools, user state persistence, and real-time edge-cloud interaction capabilities.
Note: During the public beta, you can create up to 10 API Keys. The generated key will appear in the service management page list.
Here's how to configure Cursor V0.48.9 to use the MCP server:
YOUR_API_KEY
with your actual key:{
"mcpServers": {
"wuying_mcp_server": {
"url": "https://agentbay.wuying.aliyun.com/sse?APIKEY=YOUR_API_KEY"
}
}
}
To retain your configuration and environment between sessions, add the EXTERNALID
parameter:
{
"mcpServers": {
"wuying_mcp_server": {
"url": "https://agentbay.wuying.aliyun.com/sse?APIKEY=YOUR_API_KEY&EXTERNALID=user001"
}
}
}
The system provides screen streaming capabilities for cloud computer interfaces:
MCP will return a link formatted as:
https://wuying.aliyun.com?mcp.html?authcode=<authCode>&resourceId=<resourceId>
This link has a limited validity period and should be used immediately
You can configure keyboard and mouse interaction by adding parameters:
&input=true&keyboard=true
For detailed SDK information, refer to the Web SDK Documentation
Test the configuration using prompts like:
If configured correctly, the Wuying cloud environment will start, execute browser operations, and provide a Web link to open the Wuying screen stream for interactive control.
The initial release environment includes:
For the latest tool updates, visit the AgentBay Console.
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "wuying_mcp_server" '{"url":"https://agentbay.wuying.aliyun.com/sse?APIKEY=YOUR_API_KEY"}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"wuying_mcp_server": {
"url": "https://agentbay.wuying.aliyun.com/sse?APIKEY=YOUR_API_KEY"
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"wuying_mcp_server": {
"url": "https://agentbay.wuying.aliyun.com/sse?APIKEY=YOUR_API_KEY"
}
}
}
3. Restart Claude Desktop for the changes to take effect