๐Ÿ”Œ Configuration

To connect Windsurf with SimpleTool Server, you need to configure the MCP connection in Windsurfโ€™s configuration file.

๐Ÿ“ Step 1: Locate the MCP Configuration File

The MCP configuration file is typically located at:

~/.codeium/windsurf/mcp_config.json

โš™๏ธ Step 2: Configure the SSE Connection

Add the SimpleTool Server as an MCP server in your configuration file. Youโ€™ll need to specify:

  1. A server name
  2. The server URL (pointing to your SimpleTool Serverโ€™s MCP SSE endpoint)
  3. The transport type (SSE)

Hereโ€™s an example configuration:

{
  "mcpServers": {
    "simpletool-sse-server": {
      "serverUrl": "http://localhost:8000/mcp/sse",
      "transport": "sse"
    }
  }
}

Replace localhost with the IP address or hostname of your SimpleTool Server.

โœ… Step 3: Verify the Connection

After configuring the MCP connection, hit Refresh in your Windsurf application to apply the changes. You should now be able to access SimpleToolโ€™s MCP Tools through Windsurf.

๐Ÿงฐ Available Tools

Once connected, Windsurf will have access to all the tools enabled in your SimpleTool Server. These may include:

  • ๐ŸŒ Web browsing capabilities
  • ๐Ÿ”„ HTTP request tools
  • โฐ Time conversion utilities
  • ๐Ÿ“š Documentation search
  • ๐Ÿ” And more, depending on your SimpleTool Server configuration

๐Ÿ” Troubleshooting

If you encounter issues with the integration:

  1. ๐Ÿ”„ Verify that your SimpleTool Server is running and accessible
  2. ๐Ÿ”— Check that the server URL in your MCP configuration is correct
  3. ๐Ÿšข Ensure the transport type is set to โ€œsseโ€
  4. ๐Ÿงฑ Check if any firewalls are blocking the connection

For advanced configuration options, refer to the โš™๏ธ Environment Variables documentation.