Windsurf Setup
Prerequisites
- Windsurf IDE
- Unizo API key and PCR integration ID
- Node.js v20 or higher
Setup Instructions
-
Install @mcp-remote if not already installed:
npm i mcp-remote -
Locate Windsurf's MCP configuration:
- macOS/Linux:
~/.windsurf/mcp_settings.json - Windows:
%USERPROFILE%\.windsurf\mcp_settings.json
- macOS/Linux:
-
Add Unizo PCR configuration:
- macOS/Linux
- Windows
{
"mcpServers": {
"unizo": {
"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",
"https://api.unizo.ai/mcp",
"--header",
"apikey:${UNIZO_API_KEY}",
"--header",
"x-mcp-scopes:pcr"
],
"env": {
"UNIZO_API_KEY": "your_api_key"
}
}
}
}
{
"mcpServers": {
"unizo": {
"command": "npx",
"args": [
"mcp-remote",
"https://api.unizo.ai/mcp",
"--header",
"apikey:${UNIZO_API_KEY}",
"--header",
"x-mcp-scopes:pcr"
],
"env": {
"UNIZO_API_KEY": "your_api_key"
}
}
}
}
- 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": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://api.unizo.ai/mcp",
"--header",
"apikey:${UNIZO_API_KEY}",
"--header",
"x-mcp-scopes:pcr"
],
"env": {
"UNIZO_API_KEY": "your_api_key"
}
}
}
}
Available Tools
Once configured, you'll have access to:
pcr_list_connectors- Get list of available PCR servicespcr_list_integrations- Get integrations for a specific PCR servicepcr_list_organizations- Browse and search organizations with filtering optionspcr_get_organization_details- Retrieve comprehensive organization informationpcr_list_repositories- Browse repositories within an organizationpcr_get_repository_details- Retrieve detailed repository informationpcr_list_artifacts- Browse artifacts within a repositorypcr_get_artifact_details- Retrieve detailed artifact informationpcr_list_tags- Browse tags within an artifactpcr_get_tag_details- Retrieve detailed tag information
Cascade AI Integration
Enable Cascade AI to use MCP tools:
{
"cascade.mcp.enabled": true,
"cascade.mcp.autoConnect": true
}
Multiple Integrations
To work with multiple categories or integrations, add them as a comma-separated list under the x-mcp-scopes header:
{
"mcpServers": {
"unizo": {
"command": "npx",
"args": [
"mcp-remote",
"https://api.unizo.ai/mcp",
"--header",
"apikey:${UNIZO_API_KEY}",
"--header",
"x-mcp-scopes : pcr,scm,ticketing"
],
"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"]
}