Skip to main content

Install

1

Install our CLI

      curl -sSL https://github.com/SymbioticSec/cli/releases/latest/download/install.sh | bash
      echo 'export PATH="$HOME/.local/bin:$PATH"'
2

Retrieve your API token

In your Symbiotic Security account, create a personal access token and copy it.
3

Clone our MCP repository

Clone our MCP repository using the following command :
  git clone https://github.com/SymbioticSec/mcp.git
4

Install and build the MCP

Open the repository and launch the following command :
  npm install
  npm run build
After build copy the path of the index.js file in the build folder.

Use in your IDE

You can now declare this MCP in your IDE using the following configuration :
{
 "servers": {
  "symbiotic-security": {
       "command": "node",
      "args": ["path_of_the_index.js_file"],
      "env": {
        "SYMBIOTIC_API_TOKEN": "your_token_here"
    }
  },
}
I