Skip to main content

Cursor Setup

Early Access

Try our newest feature! Only available through reach out. Contact us to join the early access program and get priority support.

Prerequisites

  • Cursor IDE
  • Unizo API key and VMS integration ID
  • Node.js v20 or higher

Setup Instructions

  1. Install @mcp-remote if not already installed:

    npm i mcp-remote
  2. Open Cursor Settings (Cmd/Ctrl + ,)

  3. Add MCP configuration:

Navigate to Cursor's settings.json and add:

{
"mcpServers": {
"unizo-vms": {
"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",
"http://api.unizo.ai/mcp/vms",
"--allow-http",
"--header",
"apikey:${UNIZO_API_KEY}"
],
"env": {
"UNIZO_API_KEY": "your_api_key"
}
}
}
}
  1. Restart Cursor 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-vms": {
"command": "/Users/{user_name}/.nvm/versions/node/v18.x.x/bin/node",
"args": [
"-y",
"/Users/{user_name}/.nvm/versions/node/v18.x.x/bin/mcp-remote",
"http://api.unizo.ai/mcp/vms",
"--allow-http",
"--header",
"apikey:${UNIZO_API_KEY}"
],
"env": {
"UNIZO_API_KEY": "your_api_key"
}
}
}
}

Available Tools

Once configured, you'll have access to:

  • list_vulnerabilities - Browse and filter discovered vulnerabilities
  • get_vulnerability_details - Access comprehensive vulnerability information
  • list_scans - View vulnerability scan history and status
  • initiate_scan - Start new vulnerability scans
  • get_scan_results - Retrieve detailed scan findings
  • track_remediation - Monitor vulnerability fix progress
  • generate_reports - Create vulnerability assessment reports
  • analyze_trends - Identify vulnerability patterns and trends

Environment Variables

You can also set environment variables in your shell profile:

export UNIZO_API_KEY="your_api_key"

Then reference them in settings.json:

{
"env": {
"UNIZO_API_KEY": "${env:UNIZO_API_KEY}",
}
}

Multiple Integrations

Configure multiple vulnerability management platforms:

{
"mcpServers": {
"unizo-vms": {
"command": "npx",
"args": [
"mcp-remote",
"http://api.unizo.ai/mcp/vms",
"--allow-http",
"--header",
"apikey:${UNIZO_API_KEY}"
],
"env": {
"UNIZO_API_KEY": "your_api_key"
}
},
"unizo-ticketing": {
"command": "npx",
"args": [
"mcp-remote",
"http://api.unizo.ai/mcp/ticketing",
"--allow-http",
"--header",
"apikey:${UNIZO_API_KEY}"
],
"env": {
"UNIZO_API_KEY": "your_api_key"
}
}
}
}

Troubleshooting

MCP not detected

  • Check Cursor's output panel: 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"
]
}