Skip to content
VS Code

Cyberbro MCP Server for VS Code

io.github.stanfrbd/mcp-cyberbro

MCP server for Cyberbro IOC extraction, enrichment and reputation analysis.

client:VS Code transport:stdio runtime:pypi

Install Cyberbro MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cyberbro-url",
      "description": "CYBERBRO_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "api-prefix",
      "description": "API_PREFIX",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ssl-verify",
      "description": "SSL_VERIFY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-host",
      "description": "MCP_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-port",
      "description": "MCP_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-mount-path",
      "description": "MCP_MOUNT_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-sse-path",
      "description": "MCP_SSE_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-streamable-http-path",
      "description": "MCP_STREAMABLE_HTTP_PATH",
      "password": true
    }
  ],
  "servers": {
    "mcp-cyberbro": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-cyberbro"
      ],
      "env": {
        "CYBERBRO_URL": "${input:cyberbro-url}",
        "API_PREFIX": "${input:api-prefix}",
        "SSL_VERIFY": "${input:ssl-verify}",
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "MCP_HOST": "${input:mcp-host}",
        "MCP_PORT": "${input:mcp-port}",
        "MCP_MOUNT_PATH": "${input:mcp-mount-path}",
        "MCP_SSE_PATH": "${input:mcp-sse-path}",
        "MCP_STREAMABLE_HTTP_PATH": "${input:mcp-streamable-http-path}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Cyberbro MCP Server in other clients