Cybrium MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Cybrium MCP ServerScan my project for vulnerabilities"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Cybrium MCP Server
MCP (Model Context Protocol) server that gives AI coding assistants real-time security scanning superpowers.
Works with Claude Code, Claude Desktop, Cursor, Windsurf, and any MCP-compatible AI tool.
What You Get
Tool | Binary | What it does |
| cyscan | SAST + secrets + IaC scan — 1,815 rules, 75+ languages, 296 secret patterns |
| cyscan | Dependency CVE + typosquat + license compliance |
| cyscan | 14 security hygiene checks (score 0-100) |
| cyscan | Identify 35 frameworks across 9 languages |
| cyscan | Apply automatic security fixes (with dry-run) |
| cyweb | Web vulnerability scanner (headers, CVE paths, configs) |
| cyprobe | Network device discovery (ARP, OUI, services) |
Related MCP server: Security Scanner MCP
Prerequisites
Install the Cybrium CLI tools:
brew tap cybrium-ai/cli
brew install cyscan cyweb cyprobeVerify installation:
cyscan --version # should show 0.8.1+
cyweb --version # should show 0.3.0+Setup: Claude Code (CLI)
Option 1: One-line command (recommended)
claude mcp add cybrium -- npx -y @cybrium-ai/mcp-serverOption 2: Manual settings.json
Add to ~/.claude/settings.json:
{
"mcpServers": {
"cybrium": {
"command": "npx",
"args": ["-y", "@cybrium-ai/mcp-server"]
}
}
}Option 3: Global install
npm install -g @cybrium-ai/mcp-serverThen add to ~/.claude/settings.json:
{
"mcpServers": {
"cybrium": {
"command": "cybrium-mcp"
}
}
}Verify
Restart Claude Code and run:
/mcpYou should see cybrium listed with 7 tools.
Setup: Claude Desktop (macOS)
Open Claude Desktop
Go to Settings (gear icon) > Developer > Edit Config
Add the following to
claude_desktop_config.json:
{
"mcpServers": {
"cybrium": {
"command": "npx",
"args": ["-y", "@cybrium-ai/mcp-server"]
}
}
}Restart Claude Desktop
You should see the hammer icon in the chat input — click it to see Cybrium tools
The config file is located at:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Setup: Cursor
Open Cursor Settings (Cmd+,)
Search for "MCP" in settings
Click Add MCP Server
Enter:
Name:
cybriumCommand:
npxArgs:
-y @cybrium-ai/mcp-server
Restart Cursor
Setup: Windsurf
Add to your Windsurf MCP configuration:
{
"mcpServers": {
"cybrium": {
"command": "npx",
"args": ["-y", "@cybrium-ai/mcp-server"]
}
}
}Usage Examples
Once configured, just ask your AI assistant naturally:
Security Scanning
"Scan this project for security vulnerabilities"
"Are there any hardcoded secrets in this codebase?"
"Check this file for SQL injection issues"
Supply Chain
"Check for vulnerable dependencies"
"Are any of our npm packages typosquatted?"
"Do we have any AGPL-licensed dependencies?"
Repository Health
"How healthy is this repo's security posture?"
"What's our security score?"
Frameworks
"What frameworks does this codebase use?"
"Detect all the technologies in this project"
Web Scanning
"Scan https://staging.example.com for vulnerabilities"
"Check our API endpoint for security headers"
Autofix
"Fix the security issues you found"
"Apply security fixes in dry-run mode first"
Network Discovery
"Discover devices on my local network"
"What services are running on the network?"
Troubleshooting
"cybrium-mcp: command not found"
Install globally: npm install -g @cybrium-ai/mcp-server
"cyscan: command not found"
Install via Homebrew:
brew tap cybrium-ai/cli && brew install cyscanTools not showing up
Check
/mcpin Claude Code showscybriumVerify
npx @cybrium-ai/mcp-serverruns without errorsRestart your AI tool after adding the config
Permission issues on macOS
chmod +x $(which cyscan)
chmod +x $(which cyweb)How It Works
Your AI Assistant (Claude/Cursor/Windsurf)
|
| MCP Protocol (stdio)
v
Cybrium MCP Server (Node.js)
|
|--- cyscan scan . → SAST + secrets + IaC findings
|--- cyscan supply . → dependency CVEs + licenses
|--- cyscan health . → repo health score
|--- cyscan frameworks . → framework detection
|--- cyscan fix . → autofix patches
|--- cyweb scan <url> → web vulnerability scan
|--- cyprobe discover → network device discovery
v
JSON results returned to AI for analysis + remediationThe MCP server spawns CLI processes and parses their JSON output. No API keys, no cloud calls, no data leaves your machine.
License
Apache 2.0
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceProvides real-time OWASP ASVS security guidance and vulnerability scanning for AI coding agents. Enables proactive security during code generation by checking security requirements, scanning code for vulnerabilities, and suggesting secure code fixes.Last updated3MIT
- Alicense-qualityBmaintenanceAutomatically detects security vulnerabilities in AI-generated code, scanning for hardcoded secrets, injection flaws, XSS, weak cryptography, authentication issues, path traversal, and vulnerable dependencies across JavaScript, Python, Java, and Go.Last updated552MIT
- Alicense-qualityDmaintenanceAn automated security engineer that integrates with AI coding assistants to perform vulnerability scanning, static analysis, and AI-driven remediation. It also provides tools for recording and executing self-healing web tests using Playwright, including visual regression and test discovery.Last updated68Apache 2.0
- AlicenseAqualityDmaintenanceEnables AI assistants to scan project dependencies and Infrastructure as Code files for security vulnerabilities and misconfigurations. It also provides automated fixing capabilities to remediate identified security issues.Last updated183MIT
Related MCP Connectors
Threat modeling, code/cloud/pipeline scanning, shadow-AI discovery, compliance checks and fixes.
Pay-per-call cybersecurity for AI agents: vuln scans, threat intel, compliance, code security.
Zero-config MCP security scanner for AI-generated apps. 25K+ vulnerability patterns.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cybrium-ai/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server