Windsurf
Learn how to set up the Mixedbread MCP server with Windsurf.
Prerequisites
Before we configure Windsurf, make sure you have the following:
- Windsurf installed
- Node.js 22+ installed
- A Mixedbread API key from our platform
Configuration
Windsurf configures MCP servers via a configuration file named mcp_config.json.
-
Locate or create the configuration file
Windsurf looks for
mcp_config.jsonin the following paths:- macOS/Linux:
~/.codeium/windsurf/mcp_config.json - Windows:
%USERPROFILE%\.codeium\windsurf\mcp_config.json
If the directory or file doesn't exist, create it manually:
macOS/Linux:
mkdir -p ~/.codeium/windsurf touch ~/.codeium/windsurf/mcp_config.jsonWindows (PowerShell):
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.codeium\windsurf" New-Item -ItemType File -Force -Path "$env:USERPROFILE\.codeium\windsurf\mcp_config.json" - macOS/Linux:
-
Add a Mixedbread server entry
Add the following to your
mcp_config.json:{ "mcpServers": { "mixedbread": { "command": "npx", "args": [ "-y", "mcp-remote@latest", "https://www.mcp.mixedbread.com/api/mcp", "--header", "Authorization:${MXBAI_AUTH_HEADER}" ], "env": { "MXBAI_AUTH_HEADER": "Bearer YOUR_MIXEDBREAD_API_KEY" } } } }- command runs mcp-remote via npx.
- args specify the Mixedbread MCP endpoint and authentication header.
- env sets an environment variable with your API key.
Replace
YOUR_MIXEDBREAD_API_KEYwith your actual key from the Mixedbread platform.
Managing Tools
Cascade limits total enabled tools to 100 at a time.
You can manage tool access by:
- Opening the Tools tab inside the plugin
- Navigating to Windsurf Settings → Cascade → Manage plugins
From here, you can toggle specific tools on or off.
Verification
Now let's confirm the integration is working.
-
Open the Cascade panel → Plugins and press Refresh.
-
Confirm that
Mixedbreadappears and is enabled. -
Start a session and test Mixedbread tools with a simple command:
Create a new store called "my-knowledge-base"
Now you can manage your Stores and perform Search directly from Windsurf.