MCP server
by rupeebw
Use our Security Scanner as a website virus scanner to detect site scanner virus threats, vulnerabilities, and exposed s
Scans code repositories to detect exposed secrets, security vulnerabilities, dependency issues, and configuration problems using pattern matching and vulnerability analysis.
Security Scanner is a community-built MCP server published by rupeebw that provides AI assistants with tools and capabilities via the Model Context Protocol. Use our Security Scanner as a website virus scanner to detect site scanner virus threats, vulnerabilities, and exposed s It is categorized under auth security, developer tools.
You can install Security Scanner in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Security Scanner is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Security Scanner is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
I recommend Security Scanner for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Security Scanner reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Security Scanner reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Security Scanner is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
We evaluated Security Scanner against two servers with overlapping tools; this profile had the clearer scope statement.
Useful MCP listing: Security Scanner is the kind of server we cite when onboarding engineers to host + tool permissions.
Useful MCP listing: Security Scanner is the kind of server we cite when onboarding engineers to host + tool permissions.
Useful MCP listing: Security Scanner is the kind of server we cite when onboarding engineers to host + tool permissions.
We evaluated Security Scanner against two servers with overlapping tools; this profile had the clearer scope statement.
showing 1-10 of 70
A comprehensive security scanning tool for code repositories, exposed as an MCP (Model Context Protocol) server. This tool helps developers identify security vulnerabilities, exposed secrets, dependency issues, and configuration problems in their codebases.
npm install -g @rupeshpanwar/security-scanner-mcp
Or use with npx:
npx @rupeshpanwar/security-scanner-mcp
The package now includes a standalone CLI tool for direct command-line scanning:
# Scan a directory with summary output
security-scan scan /path/to/project
# Scan with detailed output
security-scan scan /path/to/project --format detailed
# Scan specific categories
security-scan scan /path/to/project --categories secrets vulnerabilities
# Output as JSON
security-scan scan /path/to/project --format json
# Save report to file
security-scan scan /path/to/project --format detailed > security-report.txt
--format <format>: Output format (summary|detailed|json), default: summary--categories <categories...>: Specific categories to scan (secrets|vulnerabilities|dependencies|gitignore|git-history), default: allAdd the server to your Claude Desktop configuration:
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"security-scanner": {
"command": "npx",
"args": ["@rupeshpanwar/security-scanner-mcp"]
}
}
}
Edit %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"security-scanner": {
"command": "npx",
"args": ["@rupeshpanwar/security-scanner-mcp"]
}
}
}
Performs a comprehensive security scan on a repository.
Parameters:
path (required): Path to the repository to scanoutputFormat (optional): Output format - "summary", "detailed", or "json" (default: "summary")categories (optional): Specific categories to scan (default: all)
Example:
Scan the repository at /path/to/repo for all security issues
Checks if a piece of content contains potential secrets or sensitive information.
Parameters:
content (required): Content to check for secretsfileType (optional): File type/extension for context-aware scanningExample:
Check this content for secrets: AWS_ACCESS_KEY=AKIA1234567890ABCDEF
Analyzes .gitignore file for missing security patterns.
Parameters:
path (required): Path to the repositorypatterns (optional): Additional patterns to check forExample:
Check if the .gitignore in /path/to/repo has all recommended security patterns
Get security best practices and tips for a specific topic.
Parameters:
topic (required): Security topic
Example:
Give me security tips about secrets management
Initial Repository Scan
Scan the repository at ./my-project and show me a detailed report
Check Code Before Committing
Check this config file for any secrets:
[paste your config content]
Fix .gitignore Issues
Check my .gitignore file and tell me what security patterns I'm missing
Get Security Recommendations
Give me best practices for managing secrets in my codebase
Quick overview showing count of issues by severity level.
Complete listing of all findings with:
Machine-readable format for integration with other tools.
Contributions are welcome! Please feel free to submit a Pull Request.
MIT
This tool was created after discovering exposed credentials in production code. It aims to help developers prevent similar security incidents by providing proactive scanning and education about security best practices.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.