Windsurf can use the 101domain MCP Server through a local mcp-remote bridge. This page shows how to edit ~/.codeium/windsurf/mcp_config.json (and the Windows equivalent) and includes a ready‑to‑paste configuration that connects to https://mcp.101domain.com with your 101domain API key stored in an environment variable
Configuration:
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"101domain": {
"command": "npx",
"args": [
"-y",
"mcp-remote@0.1.38",
"https://mcp.101domain.com",
"--silent"
],
"env": {
"AUTH_TOKEN": "your-api-key-here"
}
}
}
}
Windows users: Replace "command": "npx" with "command": "cmd" and add "/c" as the first item in args. This is required because Windows cannot resolve npx (a .cmd script) without the system shell.