API server
https://cyberscan.prem.io/api/v1
Create a workspace token from the profile menu, then send it in the Authorization: Bearer header. Repository installation, selection, removal, and sync stay in the web app.
curl https://cyberscan.prem.io/api/v1/repositories \
-H "Authorization: Bearer $PREM_SECURITY_API_TOKEN"
Local MCP adapter
Run it where your client runs.
The adapter calls the same HTTPS API and contains no scanner logic, GitHub credential, or model-provider key.
- Download the MCP adapter.
- Save it on the device running Fluso or your MCP client.
- Paste this configuration and replace the path and one-time token.
{
"mcpServers": {
"prem-security": {
"command": "node",
"args": ["/absolute/path/to/prem-security-mcp.mjs"],
"env": {
"PREM_SECURITY_URL": "https://cyberscan.prem.io",
"PREM_SECURITY_API_TOKEN": "prem_sec_…"
}
}
}
}