PremCyberscan

Developer access

Prem Cyberscan API & MCP

Start scans and read repository, run, finding, statistics, and report data without changing repository access.

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.

  1. Download the MCP adapter.
  2. Save it on the device running Fluso or your MCP client.
  3. 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_…"
      }
    }
  }
}

Available operations

One workspace, one permission boundary.

list_repositoriesstart_scanlist_runsget_runget_run_statuslist_findingsget_statisticsget_report

The adapter cannot install the GitHub App or add, remove, or sync repositories. start_scan requires a stable idempotency key so client retries do not create duplicate work.