Skip to main content

Windsurf Setup

Early Access

Try our newest feature! Only available through reach out. Contact us to join the early access program and get priority support.

Prerequisites

  • Windsurf IDE
  • Unizo API key and Public Cloud (Infra) integration ID
  • Node.js v20 or higher

Setup Instructions

  1. Install @mcp-remote if not already installed:

    npm i mcp-remote
  2. Locate Windsurf's MCP configuration:

    • macOS/Linux: ~/.windsurf/mcp_settings.json
    • Windows: %USERPROFILE%\.windsurf\mcp_settings.json
  3. Add Unizo Public Cloud (Infra) configuration:

{
"mcpServers": {
"unizo-public-cloud": {
"command": "/Users/{user_name}/.nvm/versions/node/v18.x.x/bin/node",
"args": [
"/Users/{user_name}/.nvm/versions/node/v18.x.x/bin/mcp-remote",
"http://api.unizo.ai/mcp/public-cloud",
"--allow-http",
"--header",
"apikey:${UNIZO_API_KEY}"
],
"env": {
"UNIZO_API_KEY": "your_api_key"
}
}
}
}
  1. Restart Windsurf to load the MCP server

Flags: If npx is producing errors, consider adding -y as the first argument to auto-accept the installation of the mcp-remote package.

{
"mcpServers": {
"unizo-public-cloud": {
"command": "/Users/{user_name}/.nvm/versions/node/v18.x.x/bin/node",
"args": [
"-y",
"mcp-remote","/Users/{user_name}/.nvm/versions/node/v18.x.x/bin/mcp-remote",
"http://api.unizo.ai/mcp/public-cloud",
"--allow-http",
"--header",
"apikey:${UNIZO_API_KEY}"
],
"env": {
"UNIZO_API_KEY": "your_api_key"
}
}
}
}

Available Tools

Once configured, you'll have access to:

  • list_resources - Browse cloud resources across regions
  • get_resource_details - Retrieve resource configurations
  • provision_resource - Create new infrastructure resources
  • modify_configuration - Update resource configurations
  • analyze_security - Analyze infrastructure security posture
  • monitor_health - Monitor resource health and performance

Cascade AI Integration

Enable Cascade AI to use MCP tools:

{
"cascade.mcp.enabled": true,
"cascade.mcp.autoConnect": true
}

Multiple Integrations

Configure multiple cloud providers:

{
"mcpServers": {
"unizo-public-cloud": {
"command": "npx",
"args": [
"mcp-remote",
"http://api.unizo.ai/mcp/public-cloud",
"--allow-http",
"--header",
"apikey:${UNIZO_API_KEY}"
],
"env": {
"UNIZO_API_KEY": "your_api_key"
}
},
"unizo-ticketing": {
"command": "npx",
"args": [
"mcp-remote",
"http://api.unizo.ai/mcp/ticketing",
"--allow-http",
"--header",
"apikey:${UNIZO_API_KEY}"
],
"env": {
"UNIZO_API_KEY": "your_api_key"
}
}
}
}

Troubleshooting

MCP not detected

  • Check Windsurf logs: View → Output → MCP
  • Ensure Node.js v20+ is installed

Authentication errors

  • Verify your API key in Unizo dashboard
  • Check that the integration ID is correct
  • Ensure the integration is active

Debug mode

Enable debug logging in settings.json:

{
"args": [
"--debug"
]
}