FAQ
MCP Server
Windsurf Integration

Windsurf Integration

You can now use viaSocket MCP directly from Windsurf IDE. This lets your AI assistant perform real-world tasks through a simple, secure connection, all without leaving your coding environment.

Quick Start

Here are three simple steps to get started with Windsurf and viaSocket MCP:

  1. Copy your unique MCP server URL from the viaSocket MCP in your workspace.

  2. Configure the actions you want your AI to access.

  3. Open Windsurf and add the MCP URL in the settings.

Configuring MCP in Windsurf

To set up MCP with Cascade:

  1. Go to Windsurf - Settings > Advanced Settings or open the Command Palette and select Open Windsurf Settings Page.

  2. Scroll down to the Cascade section.

  3. Here, you can add a new server, view existing servers, and access the raw JSON config file at mcp_config.json.

Screenshot 2025-04-15 at 5.01.35 PM.png

Adding a New Server

To add a new server:

  1. Click the "Add Server" button in the Cascade settings.

  2. Choose from the pre-populated popular servers or click "Add custom server +" to add your own server directly in mcp_config.json.

Screenshot 2025-04-15 at 5.05.06 PM.png

mcp_config.json

The mcp_config.json file, located at ~/.codeium/windsurf/mcp_config.json, lists the servers Cascade can connect to.

The JSON format should match the same schema as the config file for Claude Desktop.

Here’s an example configuration for viaSocket MCP:

{
  "mcpServers": {
    "viasocket Actions MCP": {
      "serverUrl": "https://mcp.viasocket.com/*************/sse"
    }
  }
}
Prev