npm o360-mcpstdioMITupdated 1mo ago
Run Offensive360 SAST scans from inside your AI assistant. This Model Context Protocol server gives Claude Code, Claude Desktop, Cursor, and any other MCP client two tools:
O que dá para fazer com o360 mcp?
Offensive360 MCP Server
Run Offensive360 SAST scans from inside your AI assistant. This Model Context Protocol server gives Claude Code, Claude Desktop, Cursor, and any other MCP client two tools:
| Tool | What it does |
|---|---|
o360_scan_path |
Zips a local directory, runs a full SAST scan (60+ languages, taint/data-flow analysis), returns findings with file/line, severity, and fixes |
o360_scan_status |
Queue position of a running scan |
Ask your assistant things like "scan this project with Offensive360 and fix the criticals" — it scans, reads the findings, and starts patching.
Setup
You need an Offensive360 External scan token:
- Open-source / public repos: free — request one at offensive360.com/free-for-open-source
- Commercial: any admin of your instance can create one under Settings → Tokens
Claude Code
claude mcp add offensive360 \
-e O360_URL=https://sast.offensive360.com \
-e O360_TOKEN=<your-token> \
-- npx -y o360-mcp
Claude Desktop / Cursor (JSON)
{
"mcpServers": {
"offensive360": {
"command": "npx",
"args": ["-y", "o360-mcp"],
"env": {
"O360_URL": "https://sast.offensive360.com",
"O360_TOKEN": "<your-token>"
}
}
}
}
O360_URL can point at your own on-premise or air-gapped instance — the server
talks only to the instance you configure.
Notes
- Scans are synchronous; typical duration is 1–5 minutes depending on codebase size.
The default client timeout is 900s (
timeout_secondsparameter to override). - Common junk directories (
node_modules,.git,dist, …) are excluded from the upload automatically; add more via theexcludeparameter. - Findings are also visible in your Offensive360 dashboard with full data-flow traces.
- Requires Node 18+.
About Offensive360
One platform for SAST, DAST, MAST, SCA, malware & binary analysis, and license compliance — flat pricing, cloud or fully air-gapped on-premise. offensive360.com · Book a demo
Instalação
Adicione o360 mcp ao seu cliente. Escolha o que você usa.
claude mcp add o360-mcp -- npx -y o360-mcpcodex mcp add o360-mcp -- npx -y o360-mcpamp mcp add o360-mcp -- npx -y o360-mcp{
"mcpServers": {
"o360-mcp": {
"command": "npx",
"args": [
"-y",
"o360-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"o360-mcp": {
"command": "npx",
"args": [
"-y",
"o360-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"o360-mcp","command":"npx","args":["-y","o360-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"o360-mcp": {
"command": "npx",
"args": [
"-y",
"o360-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"o360-mcp": {
"command": "npx",
"args": [
"-y",
"o360-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"o360-mcp": {
"command": "npx",
"args": [
"-y",
"o360-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"o360-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"o360-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"o360-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"o360-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y o360-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Pontuação
39 / 100
Incompleta
- Documentação22/25
- Manutenção19/25
- Confiança16/20
- Capacidade0/15
- Instalação12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 29 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Histórico de versões
| Versões | Publicada |
|---|---|
| 1.0.2Mais recente | 2 de ago. de 2026 |