Overview
Manus MCP is a Model Context Protocol (MCP) server implementation that provides capabilities for web browsing, search queries, and code execution.
To use Manus MCP with Claude for Desktop, configure the Claude settings to include Manus MCP as a server, restart Claude, and access the tools available in the interface.
- Google search tool for retrieving relevant links. - Web browsing tool for navigating and extracting content from websites. - Code interpreter for executing code in a sandbox environment. - Bash tool for running shell commands.
- Performing automated web searches and data extraction.
- Executing code snippets in a controlled environment.
- Interacting with web applications programmatically.
Add to your AI client
Use these steps to connect Manus MCP in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"manus-mcp-huyouare": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-manus-mcp-huyouare"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"manus-mcp-huyouare": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-manus-mcp-huyouare"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"manus-mcp-huyouare": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-manus-mcp-huyouare"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"manus-mcp-huyouare": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-manus-mcp-huyouare"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"manus-mcp-huyouare": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-manus-mcp-huyouare"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"manus-mcp-huyouare": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-manus-mcp-huyouare"
]
}
}
}FAQ
Can Manus MCP browse any website?
Yes, Manus MCP can browse and interact with most websites.
Is there a limit to the number of search results?
Yes, the default maximum number of search results is 10, but this can be configured.
What programming languages does the code interpreter support?
The code interpreter supports multiple languages including Python, JavaScript, Bash, Ruby, Perl, and R.